示例#1
0
 public MainWindow()
 {
     InitializeComponent();
     this.dialogs       = new Dialogs(Textbox);
     this.wc            = new WindowController();
     this.fileFunctions = new FileFunctions(Textbox);
     this.editFunctions = new EditFunctions(Textbox);
     this.textFunctions = new TextFunctions(Textbox, wc);
 }
示例#2
0
 public Dialogs(RichTextBox t)
 {
     this.t  = t;
     this.ff = new FileFunctions(t);
 }