WPF中 ComBox的用法
程序员文章站
2022-06-09 17:20:27
...
- 填充项目CoBoxItem
属性:contentControl(这个类型的control,内容可以anything)
例如:item=文字
例如:item=StacPanel (panel中添加各种东西) - DataBinding,绑定数据,自己在这方面要加强练习,用好WPF
<ComboBox Name="ColorCmbox" Width="60">
<ComboBox.ItemTemplate> (项目模板)
<DataTemplate> (数据模板)
<StackPanel>
<Rectangle Fill="{Binding name}"></Rectangle>
<TextBlock Text="{Binding name}"></TextBlock>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
<comboBox>
数据绑定的思想:
事件驱动++==》》》数据驱动,UI只负责读数据的展示,数据变化,自动通知UI的更新。
集合数据Binding 集合Control
TIP 1::::Binding 集合对象的一个属性,source 指定为集合对象
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding stationName}"></TextBlock>//binding 集合成员的一个属性 StationName
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
C# : ColorCmbox.ItemsSource =netWork.subwayLines[0].stationsOfLine;// Source指定为 集合对象
TIP2::::BindingXMAL中的控件,
<Label Content="{Binding SelectedItem (Control的一个Property ), ElementName=LineCmbox (控件名称}"></Label>
属性:
1,SelectedIndex 选中的项目
2,IsEditable;可以输入然后选择,
相似:ListBOx
ListBox 为非折叠的 ListControl
上一篇: Binding基础
下一篇: 静态库和动态库应用汇总
推荐阅读
-
C#中StringBuilder用法以及和String的区别分析
-
详解Python中heapq模块的用法
-
详解Python中contextlib上下文管理模块的用法
-
Python中asyncore异步模块的用法及实现httpclient的实例
-
实例讲解Python中SocketServer模块处理网络请求的用法
-
Python的string模块中的Template类字符串模板用法
-
深入解析Python中的descriptor描述器的作用及用法
-
iOS中UIImagePickerController图片选取器的用法小结
-
iOS中UIActivityIndicatorView的用法及齿轮等待动画实例
-
iOS中的UIStepper数值加减器用法指南