コード例 #1
0
        public NoteControl(NotesForm notesForm, NotesModel model, NotesModel.Note note)
        {
            InitializeComponent();

            this.notesForm = notesForm;
            this.model     = model;
            this.note      = note;
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: sda97ghb/Notes
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            NotesForm form = new NotesForm();

            form.init();
            if (!form.IsDisposed)
            {
                Application.Run(form);
            }
        }
コード例 #3
0
        public MainMenu(NotesForm notesForm)
        {
            InitializeComponent();

            this.notesForm = notesForm;
        }
コード例 #4
0
ファイル: SettingsControl.cs プロジェクト: sda97ghb/Notes
        public SettingsControl(NotesForm notesForm)
        {
            InitializeComponent();

            this.notesForm = notesForm;
        }