wpf 点连线
xaml <Grid Background="#000123" MouseLeftButtonDown="UIElement_OnMouseLeftButtonDown" MouseMove="UIElement_OnMouseMove" PreviewMouseLeftButton…
|
80
|
|
148 字
|
8 分钟
wpf 查看图片大图
xaml <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="240" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions>…
|
59
|
|
73 字
|
4 分钟
wpf 字符雨
XAML <Window Background="Black" Loaded="CharacterRainWindow_OnLoaded" > <StackPanel x:Name="RootStackPanel" Background="Black"…
|
81
|
|
121 字
|
6 分钟
.NET 调用 Python
使用源码生成系统将项目中附加的 .py 文件编译为相应的 .net 类供调用 CSnakes https://github.com/tonybaloney/CSnakes https://tonybaloney.github.io/CSnakes/ https://www.bilibili.com/video/BV1hPjfzkEtF var bu…
|
128
|
|
97 字
|
2 分钟
Binding 小助手
写 Binding 时少花一些时间 调试比较复杂,可以用在一些简单的场合中 # 绑定属性进行表达式计算 <Label Content="{c:Binding A+B+C }" /> <Label Content="{c:Binding A*0.5+(B.NestedProp1/C - B.Nested…
|
66
|
|
83 字
|
3 分钟
wpf 蒙板
XAML <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="1*" /> <ColumnDefinition Width="1*" /> <ColumnDefinition Width=&qu…
|
77
|
|
110 字
|
6 分钟
wpf 水波纹
XAML <Window.Resources> <!-- 小点点的动画,准备用来做模板 --> <Storyboard x:Key="EllipseSizeStoryboard"> <DoubleAnimation AutoReverse="True" RepeatB…
|
61
|
|
71 字
|
4 分钟
wpf clip 使用
下面灰色图,上面显示彩色图,彩色图上使用 Clip 切出一个圆 XAML <Border Grid.Column="0" Width="300" Height="300" Padding="0" HorizontalAlignment="Center&q…
|
49
|
|
98 字
|
4 分钟
wpf 倒计时 (关键帧)
XMAL <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="36" FontWeight="Bold" Foreground="RoyalBlue&q…
|
49
|
|
46 字
|
3 分钟
wpf 图片对比 (图片即时缩放)
使用两张图片,一张下面,一张上面 注意:图片太大的话,会变形,需要将图片缩放成 Grid 控件对应的大小 XAML <Grid x:Name="RootGrid" ShowGridLines="False" SizeChanged="FrameworkElement_OnSizeChanged…
|
52
|
|
146 字
|
5 分钟