UWP中设置控件样式四种方法

UWP中设置控件样式四种方法,第1张

概述UWP中设置控件样式四种方法 1.隐式方法,通过仅指定 Style 的 targettype。(设置全部的button样式)


1 <Page.Resources >2         <Style targettype="button">3             <Setter Property="borderBrush" Value="lime"/>4             <Setter Property="borderThickness" Value="4"/>5         </Style>6     </Page.Resources>

2.显式方法,通过指定 Style 的 targettype 和 x:Key 特性这一特性,然后通过使用显式键的 {StaticResource} 标记扩展引用设置目标控件的 Style 属性


<Page.Resources >        <Style x:Key="btnStyle" targettype="button">            <Setter Property="borderBrush" Value="lime"/>            <Setter Property="borderThickness" Value="4"/>        </Style> </Page.Resources>//调用<button Content="跳转方法" x:name="btnTest" Style="{StaticResource btnStyle}"/>

3.单个样式表示


//1.App.xaml配置文件中<Application.Resources>     <SolIDcolorBrush x:Key="BlueBrush" color="#FF1C90D1"/></Application.Resources>//2.页面中绑定值MainPage.xaml<Rectangle Height="2" WIDth="18" Fill="{StaticResource EggshellBrush}"/>//3.获取值MainPage.xaml.csApp.Current.Resources["EggshellBrush"] as SolIDcolorBrush

4.使用样式文件进行调整样式

1) 创建文件夹themes右键添加新建项visual C# àxamlà资源字典 style.xaml

2) 在style.xaml写样式例如

<Style targettype="button" x:Key="gft_FormBtm">        <Setter Property="Background" Value="OrangeRed"></Setter>        <Setter Property="Height" Value="50"></Setter>        <Setter Property="FontSize" Value="16"></Setter>        <Setter Property="Foreground" Value="White"></Setter>        <Setter Property="HorizontalAlignment" Value="Center"></Setter>        <Setter Property="MinWIDth" Value="300"></Setter> </Style>

3) 在App.xaml文件中指定资源


<!--4.使用样式文件-->    <Application.Resources>        <ResourceDictionary>            <ResourceDictionary.MergedDictionarIEs>                <ResourceDictionary Source="themes/style.xaml"></ResourceDictionary>            </ResourceDictionary.MergedDictionarIEs>        </ResourceDictionary></Application.Resources>

4) 在xaml界面中使用样式文件

1 <button x:name="btnsubmit"  Content="同意以上协议并注册" HorizontalAlignment="Center" Click="btnsubmit_Click" Style="{StaticResource gft_FormBtm}" />
总结

以上是内存溢出为你收集整理的UWP中设置控件样式四种方法全部内容,希望文章能够帮你解决UWP中设置控件样式四种方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1211105.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存