Prism for WPF 搭建一个简单的模块化开发框架(二)

源码上传到这里了

https://gitee.com/shi2015/PW

https://github.com/756929019/PW

 

今天又有时间了,再改改,加了一些控件全局的样式

样式代码

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <!--TextBlock-->
    <Style TargetType="{x:Type TextBlock}">
        <Setter Property="Foreground" Value="{DynamicResource Sys.Foreground}"/>
        <Setter Property="FontFamily" Value="{DynamicResource Sys.FontFamily}"/>
        <Setter Property="FontSize" Value="{DynamicResource Sys.FontSize}"/>
        <Setter Property="Padding" Value="0,3,0,0"/>
    </Style>
    <!--下拉框-->
    <Style TargetType="ComboBox">
        <Setter Property="Foreground" Value="Black"/>
    </Style>
    <Style TargetType="ComboBoxItem">
        <Setter Property="Foreground" Value="Black"/>
    </Style>
    <!--文本框-->
    <Style TargetType="TextBox">
        <Setter Property="Foreground" Value="{DynamicResource Sys.Input.Foreground}"/>
        <Setter Property="Background" Value="{DynamicResource Sys.Input.Background}"/>
        <Setter Property="BorderBrush" Value="{DynamicResource Sys.Input.BorderBrush}"/>
        <Setter Property="FontSize" Value="{DynamicResource Sys.Input.FontSize}"/>
        <Setter Property="BorderThickness" Value="{DynamicResource Sys.Input.BorderThickness}"/>
        <Setter Property="Height" Value="20"/>
    </Style>
    <Style TargetType="PasswordBox">
        <Setter Property="Foreground" Value="{DynamicResource Sys.Input.Foreground}"/>
        <Setter Property="Background" Value="{DynamicResource Sys.Input.Background}"/>
        <Setter Property="BorderBrush" Value="{DynamicResource Sys.Input.BorderBrush}"/>
        <Setter Property="FontSize" Value="{DynamicResource Sys.Input.FontSize}"/>
        <Setter Property="BorderThickness" Value="{DynamicResource Sys.Input.BorderThickness}"/>
        <Setter Property="Height" Value="20"/>
    </Style>
    <!--复选框-->
    <Style TargetType="CheckBox">
        <Setter Property="Foreground" Value="{DynamicResource Sys.Input.Foreground}"/>
        <Setter Property="HorizontalContentAlignment" Value="Left"/>
        <Setter Property="VerticalContentAlignment" Value="Center"/>
        <Setter Property="Padding" Value="4,0,0,0"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="CheckBox">
                    <Grid VerticalAlignment="Top">
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition/>
                            <ColumnDefinition Width="5*"/>
                        </Grid.ColumnDefinitions>
                        <VisualStateManager.VisualStateGroups>
                            <VisualStateGroup x:Name="CommonStates">
                                <VisualState x:Name="MouseOver">
                                    <Storyboard>
                                        <ColorAnimation Duration="0" To="{DynamicResource Sys.Input.MouseOver.BorderBrush}" Storyboard.TargetProperty="(Shape.Stroke).(SolidColorBrush.Color)" Storyboard.TargetName="hotbg_20" />
                                    </Storyboard>
                                </VisualState>
                                <VisualState x:Name="Normal"/>
                                <VisualState x:Name="Disabled"/>
                                <VisualState x:Name="Pressed"/>
                            </VisualStateGroup>
                            <VisualStateGroup x:Name="CheckStates">
                                <VisualState x:Name="Checked">
                                    <Storyboard>
                                        <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Visibility)" Storyboard.TargetName="CheckIcon">
                                            <DiscreteObjectKeyFrame KeyTime="0">
                                                <DiscreteObjectKeyFrame.Value>
                                                    <Visibility>Visible</Visibility>
                                                </DiscreteObjectKeyFrame.Value>
                                            </DiscreteObjectKeyFrame>
                                        </ObjectAnimationUsingKeyFrames>
                                        <ColorAnimation Duration="0" To="{DynamicResource Sys.Input.Checked.BorderBrush}" Storyboard.TargetProperty="(Shape.Stroke).(SolidColorBrush.Color)" Storyboard.TargetName="hotbg_20" />
                                    </Storyboard>
                                </VisualState>
                                <VisualState x:Name="Unchecked"/>
                                <VisualState x:Name="Indeterminate">
                                    <Storyboard>
                                        <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Visibility)" Storyboard.TargetName="IndeterminateIcon">
                                            <DiscreteObjectKeyFrame KeyTime="0">
                                                <DiscreteObjectKeyFrame.Value>
                                                    <Visibility>Visible</Visibility>
                                                </DiscreteObjectKeyFrame.Value>
                                            </DiscreteObjectKeyFrame>
                                        </ObjectAnimationUsingKeyFrames>
                                    </Storyboard>
                                </VisualState>
                            </VisualStateGroup>
                        </VisualStateManager.VisualStateGroups>
                        <Viewbox HorizontalAlignment="Center" VerticalAlignment="Center" Height="23">
                            <Grid>
                                <Path x:Name="hotbg_20" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Fill="{DynamicResource Sys.Input.Background}" Stroke="{DynamicResource Sys.Input.BorderBrush}" Data="F1 M 746.405,724.995L 725.944,724.995C 725.703,724.995 725.508,724.534 725.508,723.966L 725.508,704.689C 725.508,704.122 725.703,703.661 725.944,703.661L 746.405,703.661C 746.646,703.661 746.841,704.122 746.841,704.689L 746.841,723.966C 746.841,724.534 746.646,724.995 746.405,724.995 Z " UseLayoutRounding="False">
                                    <!--<Path.Fill>
                                        <RadialGradientBrush RadiusX="1.96789" RadiusY="1.89722" Center="0.0848637,0.291189" GradientOrigin="0.0848637,0.291189">
                                            <RadialGradientBrush.RelativeTransform>
                                                <TransformGroup>
                                                    <SkewTransform CenterX="0.0848637" CenterY="0.291189" AngleX="-13.2747" AngleY="0"/>
                                                    <RotateTransform CenterX="0.0848637" CenterY="0.291189" Angle="37.211"/>
                                                </TransformGroup>
                                            </RadialGradientBrush.RelativeTransform>
                                            <GradientStop Color="#303EAFFF" Offset="0.0858586"/>
                                            <GradientStop Color="#302463FF" Offset="0.301316"/>
                                            <GradientStop Color="#300A17FF" Offset="0.555556"/>
                                            <GradientStop Color="#302474FF" Offset="0.828512"/>
                                            <GradientStop Color="#303ED1FF" Offset="0.969697"/>
                                        </RadialGradientBrush>
                                    </Path.Fill>-->
                                </Path>
                                <Path x:Name="CheckIcon" Data="M102.03442,598.79645 L105.22962,597.78918 L106.78825,600.42358 C106.78825,600.42358 108.51028,595.74304 110.21724,593.60419 C112.00967,591.35822 114.89314,591.42316 114.89314,591.42316 C114.89314,591.42316 112.67844,593.42645 111.93174,594.44464 C110.7449,596.06293 107.15683,604.13837 107.15683,604.13837 z" Fill="{DynamicResource Sys.Input.Foreground}" FlowDirection="LeftToRight" Stretch="Fill" HorizontalAlignment="Center" UseLayoutRounding="False" VerticalAlignment="Center" Visibility="Collapsed"/>
                                <Border x:Name="IndeterminateIcon" Background="{DynamicResource Sys.Input.Foreground}" Margin="4,9" Visibility="Collapsed"/>
                            </Grid>
                        </Viewbox>
                        <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Grid.Column="1" Margin="{TemplateBinding Padding}"/>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
    <!--单选框-->
    <Style TargetType="RadioButton">
        <Setter Property="Foreground" Value="{DynamicResource Sys.Input.Foreground}"/>
    </Style>

    <!--Button-->
    <Style TargetType="Button">
        <Setter Property="FontSize" Value="{DynamicResource Sys.FontSize}"/>
        <Setter Property="Foreground" Value="{DynamicResource Sys.Foreground}"/>
        <Setter Property="FontFamily" Value="{DynamicResource Sys.FontFamily}"/>
        <Setter Property="FontWeight" Value="Bold"/>
        <Setter Property="Cursor" Value="Hand"/>
        <Setter Property="Background" Value="{DynamicResource Sys.Button.Background}"/>
        <Setter Property="BorderBrush" Value="{DynamicResource Sys.Button.BorderBrush}"/>
        <Setter Property="BorderThickness" Value="{DynamicResource Sys.Button.BorderThickness}"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="Button">
                    <Border Name="border" CornerRadius="1" BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}">
                        <ContentPresenter Name="content" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" 
                                              RecognizesAccessKey="True" 
                                              SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" 
                                              VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Background" Value="{DynamicResource Sys.Button.MouseOver.Background}">
                            </Setter>
                        </Trigger>
                        <Trigger Property="IsPressed" Value="True">
                            <Setter Property="Background" Value="{DynamicResource Sys.Button.Pressed.Background}">
                            </Setter>
                        </Trigger>
                        <Trigger Property="IsEnabled" Value="false">
                            <Setter TargetName="border" Property="Opacity" Value="0.6" />
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

然后又做了个配置系统的名称等信息的xaml

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:sys="clr-namespace:System;assembly=mscorlib"
    xmlns:PW="clr-namespace:PW.Desktop">
    <sys:String x:Key="System.Title">这里是系统名称</sys:String>
    <sys:String x:Key="System.TitleEN">this is system name</sys:String>
    <sys:String x:Key="System.Company">xxxxx有限公司</sys:String>
    <sys:String x:Key="System.Version">1.0.0</sys:String>
    <sys:String x:Key="System.Copyright">Copyright © 2018 xxxxx有限公司</sys:String>
</ResourceDictionary>

做了个两个字体的文本样式,一个是用来做图标的,一个是液晶字体,用在特殊情况下显示数字

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <!--FIcon-->
    <Style x:Key="FIcon" TargetType="TextBlock">
        <Setter Property="FontFamily" Value="pack://application:,,,/PW.Desktop;component/Resources/#SF2015"></Setter>
        <!--<Setter Property="FontFamily" Value="../Resources/iconfont.ttf#SF2015"></Setter>-->
        <Setter Property="Foreground" Value="{StaticResource ModuleControl.TextBlock.Foreground}"/>
        <Setter Property="TextAlignment" Value="Center"/>
        <Setter Property="HorizontalAlignment" Value="Center"/>
        <Setter Property="VerticalAlignment" Value="Center"/>
        <Setter Property="FontSize" Value="{StaticResource Sys.IconFontSize}"/>
        <Setter Property="Width" Value="20"/>
        <Setter Property="Height" Value="20"/>
        <Setter Property="Margin" Value="4,2,4,2"/>
    </Style>
    <Style x:Key="QuartzRegular">
        <Setter Property="TextElement.FontFamily" Value="pack://application:,,,/PW.Desktop;component/Resources/#Quartz Regular" />
    </Style>
</ResourceDictionary>

字体文件我就不贴了,网上都有

用法是这样的

<TextBlock x:Name="navIco" Text="&#xe63c;" Style="{DynamicResource FIcon}"></TextBlock>

这里注意这里的写法是&#xe63c;

然后如果是用后台代码给赋值就要写成这样的

具体是在哪里给转义了还不清楚

 

最后把这些文件都引入到主工程的App.xaml下面

两种引用方法都行,ModularityStyles.xaml是系统的一些配色

看一下效果

这里不同的模块内设置按钮的背景色和名称,然后在登陆模块去加载并显示到页面,包括下面的导航按钮图标

这里右上角的导航条的文本和图标就是在各模块设置的,这样写

 public void Initialize()
        {
            GlobalData.NavModules.Add(new NavModuleInfo() { region = RegionNames.Main, module = ModuleNames.Map, title = ModuleTitle.Map, icon = "\xe63c", img= Images.CreateImageSourceFromImage(Properties.Resources.avtar) });
            this.moduleTracker.RecordModuleInitialized(ModuleNames.Map);
            regionManager.RegisterViewWithRegion(RegionNames.Main, typeof(MapModule_MainView));
        }

就两个模块然后就两个按钮看起来好像有些小气,,,,

下次准备把左侧的导航做出来

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 8
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值