#経緯
Windows10
, Visual Studio 2019
, C#
, .NET Core
で、Windows Forms App
を作成しようと考えています。大変恐縮ですが、きわめて初心者です(申し訳ありません)。
#ソースコード
新しいプロジェクトの作成で、test01
というプロジェクトを、C:\hoga
に作成しました。すると、Form1.cs
Form1.Designer.cs
Program.cs
という3つのファイルができました。それぞれの内容は、以下に引用した通りです。この時点でビルドすると、特に問題なく Form
が表示されます。
> Form1.cs
C#
1using System; 2using System.Collections.Generic; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Linq; 7using System.Text; 8using System.Threading.Tasks; 9using System.Windows.Forms; 10 11namespace test01 12{ 13 public partial class Form1 : Form 14 { 15 public Form1() 16 { 17 InitializeComponent(); 18 } 19 20 } 21} 22
> Form1.Designer.cs
C#
1namespace test01 2{ 3 partial class Form1 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 9 10 /// <summary> 11 /// Clean up any resources being used. 12 /// </summary> 13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 14 protected override void Dispose(bool disposing) 15 { 16 if (disposing && (components != null)) 17 { 18 components.Dispose(); 19 } 20 base.Dispose(disposing); 21 } 22 23 #region Windows Form Designer generated code 24 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> 29 private void InitializeComponent() 30 { 31 this.components = new System.ComponentModel.Container(); 32 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 this.ClientSize = new System.Drawing.Size(800, 450); 34 this.Text = "Form1"; 35 } 36 37 #endregion 38 } 39} 40
> Program.cs
C#
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Threading.Tasks; 5using System.Windows.Forms; 6 7namespace test01 8{ 9 static class Program 10 { 11 /// <summary> 12 /// The main entry point for the application. 13 /// </summary> 14 [STAThread] 15 static void Main() 16 { 17 Application.SetHighDpiMode(HighDpiMode.SystemAware); 18 Application.EnableVisualStyles(); 19 Application.SetCompatibleTextRenderingDefault(false); 20 Application.Run(new Form1()); 21 } 22 } 23}
#やってみたこと。ソースコード
さて、Formクラス
は、名前空間:System.Windows.Forms
に所属し、「アプリケーションのユーザーインターフェイスを構成するウィンドウまたはダイアログ ボックスを表します。」だそうです。Formクラス
には、Form.Location プロパティ
があって、画面座標における Form
の左上隅を表す Point
を取得することができます。上に引用したプログラムでは、Form1
という名前の Form
がありますので、この Form1
の位置は、
C#
1int xxx, yyy; 2xxx = this.Location.X; 3yyy = this.Location.Y;
で取得できます。これを表示させるには、ラベルを使うのが良いだろうと考えました。そこで、 partial class Form1
の private void InitializeComponent()
を次のように変更しました。
C#
1 private void InitializeComponent() 2 { 3 this.components = new System.ComponentModel.Container(); 4 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 5 this.ClientSize = new System.Drawing.Size(800, 450); 6 this.Text = "Form1"; 7 8 this.label1 = new System.Windows.Forms.Label(); 9 10 int xxx, yyy; 11 xxx = this.Location.X; 12 yyy = this.Location.Y; 13 string x1 = xxx.ToString("0"); 14 string y1 = yyy.ToString("0"); 15 16 this.label1.AutoSize = true; 17 this.label1.Location = new System.Drawing.Point(50, 150); 18 this.label1.Name = "label1"; 19 this.label1.Size = new System.Drawing.Size(100, 50); 20 this.label1.TabIndex = 1; 21 this.label1.Text = x1 + "," + y1; 22 23 }
#エラーメッセージ
ありません。しかし、上のラベルは表示されません。
#お願い
ラベルが表示されるようにするには、どうすればよいでしょうか。
御多用中、恐縮ですが、教えていただきますようお願い申し上げます。
#追記
上の引用中、
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
の部分を見落としていて、Form1.Designer.cs
に手を加えてしまいました。しかし、だとすると、私が加筆した次の部分を、どこに書けばいいのかわかりません。もう少し、いろいろ試してみようと思います。
C#
1 this.label1 = new System.Windows.Forms.Label(); 2 3 int xxx, yyy; 4 xxx = this.Location.X; 5 yyy = this.Location.Y; 6 string x1 = xxx.ToString("0"); 7 string y1 = yyy.ToString("0"); 8 9 this.label1.AutoSize = true; 10 this.label1.Location = new System.Drawing.Point(50, 150); 11 this.label1.Name = "label1"; 12 this.label1.Size = new System.Drawing.Size(100, 50); 13 this.label1.TabIndex = 1; 14 this.label1.Text = x1 + "," + y1;
#解決方法
途中まで書いたものを、いったんすべて削除し、もういちど、最初から test01 をつくりました。今度は、Designer.cs
には加筆せず、すべて Form1.cs
に記載しました。私が望んでいたのは、「アプリそのものを移動させたときに、常に Form の位置が表示されるようにしたい」ということでしたので、そのようにさせていただきました。具体的には、次のとおりです。
> Form1.cs
C#
1using System; 2using System.Collections.Generic; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Linq; 7using System.Text; 8using System.Threading.Tasks; 9using System.Windows.Forms; 10 11namespace test01 12{ 13 public partial class Form1 : Form 14 { 15 public Form1() 16 { 17 InitializeComponent(); 18 19 this.label1 = new System.Windows.Forms.Label(); 20 this.label1.AutoSize = true; 21 this.label1.Text = "★★ TEXT ★★"; 22 this.label1.Location = new System.Drawing.Point(50, 50); 23 this.label1.TabIndex = 0; 24 25 this.Controls.Add(this.label1); 26 this.LocationChanged += Form1_LocationChanged; // 常に今の値が欲しい場合 27 28 } 29 30 31 private void Form1_LocationChanged(object sender, EventArgs e) 32 { 33 int xxx = this.Location.X; 34 int yyy = this.Location.Y; 35 string x1 = xxx.ToString("0"); 36 string y1 = yyy.ToString("0"); 37 this.label1.Text = x1 + "," + y1; 38 } 39 40 private System.Windows.Forms.Label label1; 41 } 42}
御回答いただいた皆様、ありがとうございました。
回答2件
あなたの回答
tips
プレビュー