美文网首页
个人WPF常用的配色方案

个人WPF常用的配色方案

作者: psmyfish | 来源:发表于2019-08-05 11:43 被阅读0次

写Demo用的配色方案

    <Color x:Key="PDarkBlue">#1a535c</Color>
    <Color x:Key="PLightBlue">#4ecdc4</Color>
    <Color x:Key="PWhite">#F7F7F7</Color>
    <Color x:Key="PRed">#ff6b6b</Color>
    <Color x:Key="PYellow">#ffe66d</Color>
    <Color x:Key="PBlue">#2e87cd</Color>

    <!--solid Brush-->
    <SolidColorBrush x:Key="DarkBluePs" Color="{StaticResource PDarkBlue}"/>
    <SolidColorBrush x:Key="LightBluePs" Color="{StaticResource PLightBlue}"/>
    <SolidColorBrush x:Key="WhitePs" Color="{StaticResource PWhite}"/>
    <SolidColorBrush x:Key="RedPs" Color="{StaticResource PRed}"/>
    <SolidColorBrush x:Key="YellowPs" Color="{StaticResource PYellow}"/>
    <SolidColorBrush x:Key="BluePs" Color="{StaticResource PBlue}"/>

常用分类

#region Private Properties

        #endregion

        #region Public Properties

        #endregion

        #region CM Commands

        #endregion

        #region Public Methods

        #endregion

        #region Private Methods

        #endregion

        #region Events

        #endregion

汉化

<s:String x:Key="Key1"></s:String>
            Console.WriteLine("This Long Log-----------------------------------------------------------------");
            Console.WriteLine($"Ts-----------------------------{timestamp}------------------------------------");
            Console.WriteLine($"Ts-----------------------------{_fileWriterManager.StartTimeStamp}------------------------------------");
            Console.WriteLine($"Ts-----------------------------{timestamp - _fileWriterManager.StartTimeStamp}------------------------------------");
            Console.WriteLine($"Ts-----------------------------{timestamp}------------------------------------");
            Console.WriteLine("This Long Log-----------------------------------------------------------------");

相关文章

网友评论

      本文标题:个人WPF常用的配色方案

      本文链接:https://www.haomeiwen.com/subject/pmgpdctx.html