作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
到现在为止,我有了一个组合框控件,它将UI中所有可用的区域语言显示为组合框项。
在WPF和MVVM中
<ComboBox
x:Name="cbLanguage"
Grid.Row="1"
Height="30"
Width="200"
HorizontalAlignment="Center"
VerticalAlignment="Top"
ItemsSource="{Binding LocalLanguages,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
SelectedIndex="0">
最佳答案
通过将UniformGrid
用作ItemsPanel可以实现3列中的增加项目
<ComboBox.ItemsPanel>
<ItemsPanelTemplate >
<UniformGrid Columns="3"/>
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
ItemTemplate
更改项目外观,并为所选项目添加绿色
ComboBox
模板以在dropDown中具有自定义的页眉和页脚(在Visual Studio设计器中为
Edit Template
-
Edit a Copy
)
关于c# - 如何在WPF中设计这样的区域设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37155065/
我是一名优秀的程序员,十分优秀!