123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.IO;
- using System.Text;
- using System.Threading;
- using System.Windows.Forms;
- using DiskAccessLibrary;
- namespace ISCSIConsole
- {
- public partial class CreateRAMDiskForm : Form
- {
- private RAMDisk m_ramDisk;
- public CreateRAMDiskForm()
- {
- InitializeComponent();
- }
- private void btnCancel_Click(object sender, EventArgs e)
- {
- this.DialogResult = DialogResult.Cancel;
- this.Close();
- }
- private void btnOK_Click(object sender, EventArgs e)
- {
- int size = (int)numericDiskSize.Value * 1024 * 1024;
- RAMDisk disk;
- try
- {
- disk = new RAMDisk(size);
- }
- catch (OutOfMemoryException)
- {
- MessageBox.Show("Not enough memory available", "Error");
- return;
- }
- m_ramDisk = disk;
- this.DialogResult = DialogResult.OK;
- this.Close();
- }
- public RAMDisk RAMDisk
- {
- get
- {
- return m_ramDisk;
- }
- }
- }
- }
|