首先,您必須在您的XAML中命名您的TabItem。
<TabControl name="MyTab1">
Items
</TabControl>
一旦你這樣做,你可以點擊你的菜單項在系統托盤中添加一個事件句柄像這樣:
this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click)
之後,你需要編寫的代碼你只是喜歡這樣引用的事件:
private void menuItem1_Click(object Sender, EventArgs e) {
// here is where we'll open the window with the specified tab.
var newW = new MyWindow();
newW.Show();
MyWindow.MyTab1.Focus();
}
如果您需要幫助建立一個上下文菜單系統托盤您的NotifyIcon:http://msdn.microsoft.com/en-us/library/system.windows.forms.notifyicon.contextmenu.aspx有一個很好的例子。