Пример #1
0
        public NoteControl(NotesForm notesForm, NotesModel model, NotesModel.Note note)
        {
            InitializeComponent();

            this.notesForm = notesForm;
            this.model     = model;
            this.note      = note;
        }
Пример #2
0
        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;
        }