我想知道在xaml
中是否有可能创建一个“种类”的变量,然后将其用于其余的xaml代码。例如,假设许多控件共享相同的宽度,那么我可以在xaml中声明一次宽度,然后在所有xaml代码中使用它吗?
答案 0 :(得分:6)
您可以在资源中定义“变量”,但我更喜欢使用样式,将“属性”设置为相同的值:
xmlns:Sys="clr-namespace:System;assembly=mscorlib"
<Window.Resources>
<Sys:Double x:Key="yourVar">30.0</Sys:Double>
</Window.Resources>
<ComboBox>
<ComboBox.Items>
<ComboBoxItem FontSize="{Binding Source={StaticResource yourVar}}">1</ComboBoxItem>
<ComboBoxItem>2</ComboBoxItem>
<ComboBoxItem>3</ComboBoxItem>
</ComboBox.Items>
</ComboBox>