上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: 总是记不住,放上来方便复制 单个参数 [ValueConversion(typeof(int), typeof(string))] public class SexConverter : IValueConverter { public object Convert(object value, Ty 阅读全文
posted @ 2021-10-14 10:23 奇迹之耀 阅读(67) 评论(0) 推荐(0) 编辑
摘要: private double GetTextWidth(string text) { var textBlock = new System.Windows.Controls.TextBlock { Text = text, TextWrapping = TextWrapping.NoWrap, Fo 阅读全文
posted @ 2021-10-13 09:56 奇迹之耀 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 在主窗体添加键盘点击事件 private void Window_PreviewKeyDown(object sender, KeyEventArgs e) { Key key = (e.Key == Key.System ? e.SystemKey : e.Key); if (key == Key 阅读全文
posted @ 2021-09-17 14:26 奇迹之耀 阅读(215) 评论(0) 推荐(0) 编辑
摘要: SolidColorBrush solidColorBrush = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#2D5073")); 阅读全文
posted @ 2021-09-14 08:45 奇迹之耀 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 修改以下这部分改变可以改变边框和背景色 以下是样式模板代码 <Style x:Key="FocusVisual"> <Setter Property="Control.Template"> <Setter.Value> <ControlTemplate> <Rectangle Margin="0" 阅读全文
posted @ 2021-09-02 19:09 奇迹之耀 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 错误写法: public Thickness Radius { get { return (Thickness)GetValue(RadiusProperty); } set { SetValue(RadiusProperty, value); } } public static readonly 阅读全文
posted @ 2021-09-01 08:47 奇迹之耀 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 使用vue完成手机号码的验证,效果如下 html代码 <div id="app"> <h2 style="margin-top: 80px;">手机号验证</h2> <input v-model="input" type="text"/> <!-- 当正则验证不通过时就显示span标签 --> <s 阅读全文
posted @ 2021-08-27 22:58 奇迹之耀 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 想实现当前台文本框的值改变时,后台的值也同时改变,然后我设置的Mode=TwoWay,但是不起作用 最后发现需要设置UpdateSourceTrigger=PropertyChanged 更新:不设置UpdateSourceTrigger=PropertyChanged也可以,但是只有当文本框失去焦 阅读全文
posted @ 2021-08-27 09:41 奇迹之耀 阅读(1294) 评论(1) 推荐(1) 编辑
摘要: 原代码: private BitmapSource BitmapToBitmapSource(System.Drawing.Bitmap src) { IntPtr ip = src.GetHbitmap();//从GDI+ Bitmap创建GDI位图对象 BitmapSource bitmapSo 阅读全文
posted @ 2021-08-25 14:16 奇迹之耀 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 需求:读取高分辨率图片显示到宽度为200的Image控件上 核心代码: private BitmapImage ReadImageFiletToBinary(string fileName) { using (var stream = new FileStream(fileName, FileMod 阅读全文
posted @ 2021-08-25 10:31 奇迹之耀 阅读(951) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页