将文本块内容设置为设置中的字符串

本文关键字:设置 字符串 文本 | 更新日期: 2023-09-27 18:21:09

我的表单中有两个文本块。像这样的东西:

<TextBlock Name="applicationname" Text="{binding applicationname?}"/>
<TextBlock Name="applicationname" Text="{binding settings.stringVersionNumber}"/>

我想将第一个文本块内容设置为自动显示应用程序名称,另一个设置为显示保存在应用程序设置中的字符串。。

我应该使用"wpf代码隐藏"来更改值,还是可以直接在xaml中绑定文本块?

将文本块内容设置为设置中的字符串

您可以直接在XAML中将数据绑定到静态属性,包括应用程序设置:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:l="clr-namespace:WpfApplication1"
        xmlns:p="clr-namespace:WpfApplication1.Properties"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <StackPanel>
            <TextBlock Text="{Binding Source={x:Static l:MainWindow.AssemblyTitle}}"/>
            <TextBlock Text="{Binding Source={x:Static p:Settings.Default}, Path=VersionNumber}"/>
        </StackPanel>
    </Grid>
</Window>

…其中WpfApplication1是您的命名空间,VersionNumber是在应用程序设置中定义的字符串。

要获得程序集标题,我们需要MainWindow类中的一些代码:

public static string AssemblyTitle
{
    get 
    {
        return Assembly.GetExecutingAssembly()
                       .GetCustomAttributes(typeof(AssemblyTitleAttribute), false)
                       .Cast<AssemblyTitleAttribute>()
                       .Select(a => a.Title)
                       .FirstOrDefault();
    }
}

附言:不能为两个元素指定相同的名称。