示例#1
0
        public Warning1(StartWindow refFormStartWindow, string selItem)
        {
            InitializeComponent();

            this.Show();
            this.refFormStartWindow = refFormStartWindow;
            this.selItem            = selItem.Replace(' ', '_');
        }
        public CreatingNewDB(StartWindow refFormStartWindow, string DBName)
        {
            InitializeComponent();
            this.refFormStartWindow = refFormStartWindow;
            this.DBName             = DBName;

            File.Create("Subjects/" + DBName.Replace(' ', '_') + ".db").Close();
        }
示例#3
0
        public Directory(StartWindow refForm, string DBName)
        {
            InitializeComponent();
            KeyPreview = true;

            this.refStartWindow  = refForm;
            this.DBName          = DBName;
            WindowState          = FormWindowState.Maximized;
            richTextBox1.Visible = true;
            pictureBox1.Visible  = false;
        }
示例#4
0
        public CreatingDBName(StartWindow refForm)
        {
            InitializeComponent();

            this.refFormStartWindow = refForm;
        }
 public EditTheDirectory(StartWindow refFormStartWindow, string DBName)
 {
     InitializeComponent();
     this.refFormStartWindow = refFormStartWindow;
     this.DBName             = DBName;
 }