Пример #1
0
 private NoteWindow createNoteWindow(Note n)
 {
     var newWindow = new NoteWindow(this,n.ID);
     this.notes.Add(newWindow);
     newWindow.Left = n.x;
     newWindow.Top = n.y;
     newWindow.text.Text = n.value;
     newWindow.col = n.col;
     newWindow.changeColor();
     newWindow.ShowInTaskbar = false;
     newWindow.Width = n.w;
     newWindow.Height = n.h;
     return newWindow;
 }