学海无涯

导航

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 43 下一页

2023年1月7日 #

共享尺寸组 SharedSizeGroup

摘要: 整体布局由DockPanel 定义,使用附加的Dock.Top属性将标头Grid定位在顶部,并 允许ScrollViewer填充剩余空间。 1 <DockPanel Grid.IsSharedSizeScope="True"> 2 <DockPanel.Resources> 3 <Style Tar 阅读全文

posted @ 2023-01-07 13:20 宁静致远. 阅读(157) 评论(0) 推荐(0) 编辑

绘图

摘要: 画线 <Rectangle Grid.Row="5" Grid.ColumnSpan="2" Height="1" Fill="Blue" /> <Border Grid.ColumnSpan="2" Grid.Row="4" VerticalAlignment="Top" BorderBrush= 阅读全文

posted @ 2023-01-07 12:30 宁静致远. 阅读(36) 评论(0) 推荐(0) 编辑

2023年1月5日 #

实现单应用程序,即只能启动一个实例

摘要: 1 using Prism.Ioc; 2 using System.Threading; 3 using System.Windows; 4 using WpfTestBlankApp.Views; 5 6 namespace WpfTestBlankApp 7 { 8 /// <summary> 阅读全文

posted @ 2023-01-05 17:09 宁静致远. 阅读(31) 评论(0) 推荐(0) 编辑

ListBox

摘要: 1 <ListBox ItemsSource="{Binding}" IsSynchronizedWithCurrentItem="True"> 2 <ListBox.ItemTemplate> 3 <DataTemplate> 4 <TextBlock> 5 <TextBlock Text="{B 阅读全文

posted @ 2023-01-05 09:05 宁静致远. 阅读(49) 评论(0) 推荐(0) 编辑

Wpf原生MvvM

摘要: using System.ComponentModel; namespace WpfTestBlankApp.Models { public class Nickname : INotifyPropertyChanged { public event PropertyChangedEventHand 阅读全文

posted @ 2023-01-05 09:03 宁静致远. 阅读(53) 评论(0) 推荐(0) 编辑

2023年1月4日 #

Layout 布局

摘要: WPF 附带以下通用面板布局控件: Grid(网格) 按开发人员指定的行和列排列内容,不用固定大小和位置。最强大的内置布局控件 1 <Grid> 2 <Grid.RowDefinitions> 3 <RowDefinition /> 4 <RowDefinition /> 5 <RowDefinit 阅读全文

posted @ 2023-01-04 17:35 宁静致远. 阅读(89) 评论(0) 推荐(0) 编辑

2023年1月3日 #

特殊字符和空白

摘要: XMAL 字符实体 特殊字符 字符实体 < &lt; > &gt; & &amp; " &quot; <Button> &lt;Click Me&gt; </Button> 保留字符串的首尾空格 <TextBox xml:space="preserve" Foreground="White"> Th 阅读全文

posted @ 2023-01-03 16:13 宁静致远. 阅读(61) 评论(0) 推荐(0) 编辑

2023年1月2日 #

FontAwesome 字体图标 IconFont

摘要: 一、Nuget 上安装 FontAwesome 阅读全文

posted @ 2023-01-02 12:56 宁静致远. 阅读(10) 评论(0) 推荐(0) 编辑

MaterialDesign 控件

摘要: 为按钮添加阴影 <Button Width="250" materialDesign:ElevationAssist.Elevation="Dp5" Style="{StaticResource MaterialDesignRaisedButton}" ToolTip="MaterialDesign 阅读全文

posted @ 2023-01-02 12:02 宁静致远. 阅读(92) 评论(0) 推荐(0) 编辑

WPF常用控件

摘要: <ImageBrush ImageSource="/background.png" Stretch="UniformToFill" Opacity="0.3"/> background.png 属性->生成操作->资源 填充渐变颜色 <Grid> <Grid.Background> <LinearG 阅读全文

posted @ 2023-01-02 11:02 宁静致远. 阅读(30) 评论(0) 推荐(0) 编辑

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 43 下一页