예제 #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
        public SettingsControl(NotesForm notesForm)
        {
            InitializeComponent();

            this.notesForm = notesForm;
        }