があり、DockPanel
このコードを実行すると、ドックのコンテンツが右側のドックに追加されますが、テキストを表示できません(つまり、以下に示すように、ステップ1とステップ2などを実行します)。私はたくさんの研究をしましたが、何もうまくいきませんでした。よろしくお願いします。
public void ShowInstructionForm()
{
dragDropForm = new DockContent();
dragDropForm.Name = "Hints";
dragDropForm.TabText = "Hints2";
dragDropForm.ShowHint = DockState.DockRight;
dragDropForm.BackColor = Color.White;
dragDropForm.Text = "- Perform the step number 1 ."
+ Environment.NewLine + " - Perform the Step number 2";
try
{
dragDropForm.Show(this.oDock.MainDock);
}
catch (Exception e)
{
MessageBox.Show(this.oDock.MainDock, "error happened " + e.Message);
}
}