簡體   English   中英

如何將App.XAML樣式應用於當前窗口

[英]How to apply App.XAML style to current window

我正在嘗試應用驗證錯誤模板並在App.XAML中定義樣式。

<Application x:Class="MY.UI.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:BP.NES.UI"
            >
    <Application.Resources>
        <Style TargetType="{x:Type TextBox}">
            <Setter Property="Validation.ErrorTemplate">
                <Setter.Value>
                    <ControlTemplate>
                        <Grid>
                            <Border BorderBrush="#FFCB2E2E" BorderThickness="1" Background="#11FF0000" IsHitTestVisible="False" x:Name="errorBorder"/>
                            <AdornedElementPlaceholder x:Name="placeholder" />
                            <Popup AllowsTransparency="True" HorizontalAlignment="Right" HorizontalOffset="0" VerticalOffset="0" PopupAnimation="Fade" Placement="Left" 
                                   PlacementTarget="{Binding ElementName=errorBorder}" IsOpen="{Binding ElementName=placeholder, Path=AdornedElement.IsFocused, Mode=OneWay}">
                                <StackPanel Orientation="Horizontal">
                                    <Polygon  VerticalAlignment="Center" Points="0,4 4,0 4,8" Fill="#FFCB2E2E" Stretch="Fill" Stroke="#FFCB2E2E"
                                      StrokeThickness="2" />
                                    <Border Background="#FFCB2E2E" CornerRadius="4" Padding="4">
                                        <TextBlock HorizontalAlignment="Center" Foreground="White" FontWeight="Bold" Margin="2,0,0,0"
                                                   Text="{Binding ElementName=placeholder, Path=AdornedElement.ToolTip, Mode=OneWay}" />
                                    </Border>
                                </StackPanel>
                            </Popup>
                        </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
            <Style.Triggers>
                <Trigger Property="Validation.HasError" Value="True">
                    <Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors)[0].ErrorContent}" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </Application.Resources>
</Application>

現在在我的主窗口中,我有以下代碼:

<Window x:Class="MY.UI.View.MainWindow"
         xmlns:local="clr-namespace:MY.UI.View"
        xmlns:sys="clr-namespace:System;assembly=mscorlib"
        mc:Ignorable="d"
        xmlns:vm="clr-namespace:MY.UI.ViewModel"
        xmlns:rules="clr-namespace:MY.UI.Validations"
        >
         <Grid x:Name="MainGrid">
          <TextBox Grid.Row="1"
                             x:Name="CellphoneNumberTextBox"
                             Grid.Column="1"
                             VerticalAlignment="Stretch"
                             Margin="10,0,0,10"
                             IsEnabled="{Binding ElementName=PereferenceRadio,Path=IsChecked}"
                             Text="{Binding CurrentEnrolmentDetail.CellNumber,NotifyOnValidationError=True,ValidatesOnNotifyDataErrors=True,UpdateSourceTrigger=PropertyChanged}">
          </TextBox>
            </Grid>
</Window>

如果我將樣式移到Window.Resources,它就可以正常工作,但是當我在App.XAML中擁有它時,它將無法工作。 這是由於名稱空間的差異造成的嗎?

在App.Xaml中設置樣式鍵,然后在文本框中使用該鍵。

例:

App.xaml中

<Style x:Key="HeaderStyle" TargetType="TextBlock">
        <Setter Property="Foreground" Value="Gray" />
        <Setter Property="FontSize" Value="24" />
</Style>

窗口:

<Window x:Class="WpfTutorialSamples.Styles.ExplicitStyleSample"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ExplicitStyleSample" Height="150" Width="300">

<StackPanel Margin="10">
    <TextBlock>Header 1</TextBlock>
    <TextBlock Style="{StaticResource HeaderStyle}">Header 2</TextBlock>
    <TextBlock>Header 3</TextBlock>
</StackPanel>
</Window>

或使用BasedOn功能覆蓋如果您不希望創建樣式鍵,請嘗試此操作

App.xaml中

<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}">
<!-- ... -->
</Style>

我已經在App.xaml的ResourceDictionary中聲明了我的基本樣式,如果我在這樣的特定窗口中覆蓋了它們,通常就可以了。

如果所有TextBox都將保持與資源文件中使用以下應用程序相似的思想。

     <Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}">
          <Setter Property="Background" Value="Blue"/>
     </Style>

其他在App.xaml中創建密鑰,並在需要的TextBox中使用,如下所示:

 <Style x:Key="TextboxBackgroundColor" TargetType="TextBox">
      <Setter Property="Background" Value="Cyan"/>
 </Style>
 <TextBox x:Name="txtText" Style="{StaticResource TextboxBackgroundColor}" />

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM