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