我想創建一個快捷菜單,使用C#,將顯示旁邊類似於這裏發生在Visual Studio中的節點:如何創建在C#中的上下文菜單
我現在的代碼導致主窗體閃爍。
private void treeView1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
var myForm = new Form {Text = "My Form"};
myForm.SetBounds(10, 10, 200, 200);
myForm.Show();
// Determine if the form is modal.
if (myForm.Modal == false)
{
// Change borderstyle and make it not a top level window.
myForm.FormBorderStyle = FormBorderStyle.FixedToolWindow;
myForm.TopLevel = false;
}
}
}
您在VS中顯示的內容不是模態,而是上下文菜單。你在找什麼? –
那麼可能上下文菜單然後 –