コード例 #1
0
ファイル: Window.cs プロジェクト: havruchok16/OOP_CS
 public Window(int w, int h, bool dec, string color)
 {
     this.windowWidth = w;
     this.windowHeight = h;
     this.decoration = new Decoration(dec, color);
     this.control = new Control();
     ID = windowHeight * windowWidth;
 }
コード例 #2
0
ファイル: Window.cs プロジェクト: havruchok16/OOP_CS
 public Window()
 {
     this.windowHeight = 1600;
     this.windowWidth = 900;
     this.decoration = new Decoration();
     this.control = new Control();
     ID = windowHeight * windowWidth;
 }