gpt4 book ai didi

wpf - 将不同的属性绑定(bind)到不同的来源

转载 作者:行者123 更新时间:2023-12-04 19:08:20 25 4
gpt4 key购买 nike

我有一个带有 ListBox 的窗口,它有一个 DataTemplate,绑定(bind)到 LogItemsObservableCollectionListBoxItemsSource 在代码中设置为集合;在 XAML 中设置构成 DataTemplateTextBoxTextBlock 上的绑定(bind)。到目前为止,如此传统。但是,我需要在运行时为 TextBlock 设置字体大小/系列。目前,此信息保存在静态 cGlobals 类中。所以我需要能够将 TextBlock.Text 绑定(bind)到 LogItems 集合,但是将 TextBlock.FontSize 属性绑定(bind)到 cGlobals .LogFontSize 属性。我该如何做到这一点,是通过下面 XAML 中概述的绑定(bind),还是通过代码?

       <ListBox   . . .  .  >

<ListBox.ItemTemplate>
<DataTemplate>
<Grid HorizontalAlignment="Stretch" . . . . >

<Grid.RowDefinitions>
<RowDefinition Height="20" />
<RowDefinition Height="*" MinHeight="40" />
</Grid.RowDefinitions>

<TextBox Grid.Row="0" Background="Honeydew" Text="{Binding Mode=OneWay, Path=Header, . . . . />
<TextBlock FontSize="{Binding ??????}" Grid.Row="1" Text="{Binding Path=BodyText}" />

</Grid>
</DataTemplate >
</ListBox.ItemTemplate >
</ListBox>

最佳答案

xaml

<Window x:Class="WpfApplication6.StaticBinding"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication6"

Title="StaticBinding" Height="300" Width="300">
<Grid>
<TextBlock FontSize="{Binding Source={x:Static local:Global.FontSize}}" Text="abc"/>
</Grid>

Global

public class Global
{
public static double FontSize
{
get { return 20.0; }
}
}

关于wpf - 将不同的属性绑定(bind)到不同的来源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18115612/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com