Inheritance: System.Windows.Forms.Form
コード例 #1
0
ファイル: RealTimeSim.cs プロジェクト: exelix11/YATA-PLUS
 public RealTimeSim(Sett owner)
 {
     own = owner;
     InitializeComponent();
     imgs = Form1.imageArray;
     Overlay_LR_TOP_img.Parent = topImage;
     Arrows_bottom.Parent = bottomImage;
     Arrows_bottom.Location = new Point(0, 0);
     Top_screen_overlay.Parent = Arrows_bottom;
     Top_screen_overlay.Location = new Point(0, 0);
     if (!Form1.APP_ShowUI_Sim)
     {
         Overlay_LR_TOP_img.Visible = false;
         Arrows_bottom.Visible = false;
         Top_screen_overlay.Visible = false;
     }
     loadImages();
 }
コード例 #2
0
 public RealTimeSim(Sett owner)
 {
     own = owner;
     InitializeComponent();
     imgs = Form1.imageArray;
     Overlay_LR_TOP_img.Parent   = topImage;
     Arrows_bottom.Parent        = bottomImage;
     Arrows_bottom.Location      = new Point(0, 0);
     Top_screen_overlay.Parent   = Arrows_bottom;
     Top_screen_overlay.Location = new Point(0, 0);
     if (!Form1.APP_ShowUI_Sim)
     {
         Overlay_LR_TOP_img.Visible = false;
         Arrows_bottom.Visible      = false;
         Top_screen_overlay.Visible = false;
     }
     loadImages();
 }
コード例 #3
0
ファイル: Form1.cs プロジェクト: MalikOussalah/YATA
 private void toolStripSettings_Click(object sender, EventArgs e) {
     Sett settings = new Sett();
     settings.Show();
 }
コード例 #4
0
ファイル: Form1.cs プロジェクト: Dark101/YATA-PLUS
 private void toolStripSettings_Click(object sender, EventArgs e)
 {
     Sett settings = new Sett();
     settings.Size = new System.Drawing.Size(APP_SETT_SIZE_X, APP_SETT_SIZE_Y);
     settings.ShowDialog();
 }