WPF学习笔记1:基础控件
2022-08-21 19:58:54摘要:一、基础控件汇总 | 控件类型 | 主要控件 | | ------------ | ------------------------------------------------------------ | | 按钮控件 | Button、RepeatButton、RadioButton | | 数据显示控件 | TextBlock、Label、Image、ItemsControl**、ListView、ListBox、DataGrid、DocumentViwer | | 输入控件 | TextBox、RichTextBox、CheckBox、ComboBox、DatePicker、PasswordBox、Slider、ProgressBar | | 菜单导航控件 | MenuItem、ContextMenu、ToolBar、TreeView、TabControl、Expander | | 信息提示控件 | Popup、Window、PrintDialog、ToolTip | | 布局控件 | Grid、StackPanel、WrapPanel、DockPanel、UniformGrid、Canvas、InkCanvas、**Border | | 图形控件 | Line、Rectangle、Ellipse、Polyline、Polygon、Path | | 其他控件 | ScrollViwer、GroupBox、ViewBox | 1. 常用属性 尺寸(宽高)、定位(Margin,HorizontalAlignment、VerticalAlignment)、颜色(Background、Foreground)、信息显示(Text、Content、ListViewItem、ListBoxItem、DataGridTextColumn…..) 鼠标事件、键盘事件 特别属性 RadioButton:GroupName 集合控…… 阅读全文