CreateRAMDiskForm.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.IO;
  6. using System.Text;
  7. using System.Threading;
  8. using System.Windows.Forms;
  9. using DiskAccessLibrary;
  10. namespace ISCSIConsole
  11. {
  12. public partial class CreateRAMDiskForm : Form
  13. {
  14. private RAMDisk m_ramDisk;
  15. public CreateRAMDiskForm()
  16. {
  17. InitializeComponent();
  18. }
  19. private void btnCancel_Click(object sender, EventArgs e)
  20. {
  21. this.DialogResult = DialogResult.Cancel;
  22. this.Close();
  23. }
  24. private void btnOK_Click(object sender, EventArgs e)
  25. {
  26. int size = (int)numericDiskSize.Value * 1024 * 1024;
  27. RAMDisk disk;
  28. try
  29. {
  30. disk = new RAMDisk(size);
  31. }
  32. catch (OutOfMemoryException)
  33. {
  34. MessageBox.Show("Not enough memory available", "Error");
  35. return;
  36. }
  37. m_ramDisk = disk;
  38. this.DialogResult = DialogResult.OK;
  39. this.Close();
  40. }
  41. public RAMDisk RAMDisk
  42. {
  43. get
  44. {
  45. return m_ramDisk;
  46. }
  47. }
  48. }
  49. }