0
4 개의 단추가 명령을 바인딩하고 있으므로이 명령을 수행하려면 tabcontrols를 사용하고 싶습니다.wpf에서 tabcontrols로 단추의 명령을 변경하는 방법
이SettingCmd = new RelayCommand<System.Windows.Controls.Frame>
(
(f) =>
{
f.Navigate(new Uri(@"View\SettingPage.xaml", UriKind.Relative));
}
);
가 지금은 이러한 변화가 어떻게 버튼의 명령을 수행하기 위해 그들에게 명령을 추가 할 수 있도록, 4 개 버튼
에 따라 4 XAML 페이지가 있습니다 :<Button Margin="5" Width="Auto" Height="26" Content="operating" Command="{Binding PCmd}" CommandParameter="{Binding ElementName=frame}"/>
<Button Margin="5" Width="Auto" Height="26" Content="settings" Command="{Binding SettingCmd}" CommandParameter="{Binding ElementName=frame}"/>
<Button Margin="5" Width="Auto" Height="26" Content="showing" Command="{Binding DiCmd}" CommandParameter="{Binding ElementName=frame}"/>
<Button Margin="5" Width="Auto" Height="26" Content="controls" Command="{Binding DeviceCmd}" CommandParameter="{Binding ElementName=frame}"/>
<Frame x:Name="frame" Source="PPage.xaml" NavigationUIVisibility="Hidden" />
설정은 다음과 같이 Section 명령
, 좋은 작품, 내가 수직으로 네 tabitems의 방향을 변경하는 방법을 알고 싶습니다 – Roger
http://stackoverflow.com/questions/3953286/how-to-build-vertical-tab-sets-in-wpf – Usama