コンテンツへスキップ
ものがたり
戻る

最近すっかり.NETのバグを紹介する日記でなかったので、ひさしぶりに。

using System;  

using System.Drawing;  

using System.Windows.Forms;

class MainForm : Form
{
public MainForm ()
{
TrackBar tb1 = new TrackBar ();
tb1.Size = new Size (100, 50);
tb1.Orientation = Orientation.Vertical;

TrackBar tb2 = new TrackBar ();
tb2.Location = new Point (100, 0);
tb2.BackColor = Color.Red;
tb2.Size = new Size (100, 50);
tb2.Orientation = Orientation.Vertical;

this.Controls.Add (tb1);
this.Controls.Add (tb2);
}

public static void Main (string [] args)
{
Application.Run (new MainForm ());
}
}

BackColorを設定すると、tb2のようにサイズが正しくなります。.NET 2.0はbuggyなので、tb2も正しいサイズになりませんが。


この記事を共有:

前の記事
次の記事
CC Hits