【发布时间】:2017-06-02 12:14:06
【问题描述】:
我正在发现 WPF 和 MVVM,我认为我的问题对我接下来几天的项目工作很有帮助。
这就是我所拥有的:
所以:
- 每个按钮在窗口右侧打开一个视图
- 活动按钮必须应用不同的样式(如绿色背景)
要加载页面 onClick 一个按钮,我不担心,我会在我的网格 onClick 上添加一个特定的 XAML。
但是要在活动按钮上应用不同的样式,我迷路了。 我是否设置了一个变量 onClick 并以我的风格 Resource 将触发器绑定到该变量?我不知道该怎么做。
我的 MainWindow 是这样定义的:
<Window x:Class="XXXX.UserInterface.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:XXXX.UserInterface"
mc:Ignorable="d"
Title="MainWindow"
Style="{StaticResource CustomWindowStyle}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="170"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Border Style="{StaticResource SideMenuBorder}">
<StackPanel Grid.Column="0" Orientation="Vertical">
<Button Click="ButtonCovertC_Click"
x:Name="ButtonCovertC"
Margin="5.5 9 8.5 0"
Style="{StaticResource ButtonSideMenu}"
Content="{local:Loc ButtonCovertC}"/>
<Button Click="ButtonEarpieceC_Click"
x:Name="ButtonEarpieceC"
Margin="5.5 14 8.5 0"
Style="{StaticResource ButtonSideMenu}"
Content="{local:Loc ButtonEarpieceC}"/>
<Button Click="ButtonRemoteC_Click"
x:Name="ButtonRemoteC"
Margin="5.5 14 8.5 0"
Style="{StaticResource ButtonSideMenu}"
Content="{local:Loc ButtonRemoteC}"/>
</StackPanel>
</Border>
</Grid>
</Window>
作为记录,我的按钮的样式资源:
<Style x:Key="ButtonSideMenu" TargetType="Button">
<Setter Property="TextBlock.TextAlignment" Value="Center" />
<Setter Property="HorizontalAlignment" Value="Stretch"/>
<Setter Property="Height" Value="92"/>
<Setter Property="Background" Value="{StaticResource ColorButtonBackground}"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border CornerRadius="{StaticResource ControlCornerRadius}" Background="{TemplateBinding Background}">
<ContentPresenter VerticalAlignment="Center" />
</Border>
<ControlTemplate.Triggers>
<Trigger Property="Button.IsDefaulted" Value="True"/>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="FontWeight" Value="DemiBold"/>
<Setter Property="Background" Value="{StaticResource ColorLayoutLine}"/>
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Background" Value="{StaticResource ColorBoldSelectedButton}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
还有我的 MainWindow.xaml.cs:
namespace XXXX.UserInterface
{
/// <summary>
/// Logique d'interaction pour MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void ButtonCovertC_Click(object sender, RoutedEventArgs e)
{
}
private void ButtonEarpieceC_Click(object sender, RoutedEventArgs e)
{
}
private void ButtonRemoteC_Click(object sender, RoutedEventArgs e)
{
}
}
}
【问题讨论】:
标签: c# wpf mvvm navigation