WPF 控件如何绑定资源中的数据

来源:互联网 发布:组成数据的基本单位是 编辑:程序博客网 时间:2024/05/21 18:48

关于在xaml中的控件如何绑定资源中的数据

<Window x:Class="WpfApplication1.StudyResource"        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" >        <Window.Resources>        <sys:String x:Key="mWord">ABCD</sys:String>        <sys:Double x:Key="cirRatio">3.14159</sys:Double>    </Window.Resources>        <StackPanel>        <TextBlock Text="{StaticResource mWord}" />        <TextBlock Text="{Binding Source={StaticResource mWord}}" />        <TextBlock Text="{Binding Source={StaticResource cirRatio},StringFormat=F6}" />        <Label Content="{StaticResource cirRatio}" ContentStringFormat="F4" />        <!-- 在C#中实现 -->        <TextBlock x:Name="txtWord" />        <TextBlock x:Name="txtCirRatio" />    </StackPanel>    </Window>

 

C# 代码:

string txtSong = (string)this.FindResource("mSong");this.txtWord.Text = txtSong;double txtRatio = (double)this.FindResource("cirRatio");this.txtCirRatio.Text = txtRatio.ToString();

运行结果:
ABCD
ABCD
3.141590
3.1415
ABCD
3.14159

------------------------
 因为TextBlock的Text是String,所以要通过StringFromat来转换格式

C  将字符串转换为美元格式

E  科学记数法

P  转换为百分比

F  F后边的数字决定保留几位小数

0 0
原创粉丝点击