私はMVVMを使用しています。私はTabItems
ヘッダー付きですmytabItem
、mytabItem2
。Window
タブのヘッダーをダブルクリックして新しい関数を開くことができるように関数をバインドする方法。
<Grid Grid.Column="1" Grid.Row="3" Grid.ColumnSpan="3" Margin="79,0,0,0">
<TabControl Name="myTabControl">
<TabItem Name ="mytabItem" Header="Double cllick me">
<TextBlock Text="Hello world!"/>
</TabItem>
<TabItem Name ="mytabItem1" Header="cllick me" MouseDoubleClick="">
<TextBlock Text="Hello Water!"/>
</TabItem>
</TabControl>
</Grid>