- 博客(33)
- 收藏
- 关注
原创 WPF 登录窗口demo示例
/Border></Setter></Style></Border></Trigger></Trigger></Trigger></Trigger></Setter></Style><Grid><Grid></Grid></Border></Grid>
2024-05-22 10:27:57 1201
原创 (WPF)Serilog 使用demo实例
/{Level:u3}表示将日志等级的输出显示为3个大写字符,如DBG、INF、ERR等。fileSizeLimitBytes: 10 * 1024) /*最大单个文件长度*/rollingInterval: RollingInterval.Day, /*日志按日保存*/encoding: Encoding.UTF8, /*文件字符编码*/.WriteTo.File(@".\Log\Log.txt", /*日志文件名*/
2023-12-15 19:58:53 963
原创 WPF TextBox 限定输入
步骤一:禁用输入法 <Window xmlns:input="clr-namespace:System.Windows.Input;assembly=PresentationCore"> <TextBox input:InputMethod.IsInputMethodEnabled="False"/> </Window>步骤二:监测 T...
2019-08-15 21:02:42 721
翻译 C# 控件名简写汇总
一、公共控件 Button btn 按钮 CheckBox chk 复选框 CheckedListBox ckl 显示一个项列表,其中每一项左侧都有一个复选框 ComboBox cmb 下拉列表框 DateTimePicker dtp 时间控件 Label lbl 文本列表 LinkLabel llb 支持超链接的文本标签 ListBox lst...
2018-09-29 18:44:01 2266
转载 TextBox经典带水印样式
<TextBox x:Name="SearchBox" TabIndex="0" BorderThickness="1" Margin="2" Height="23" HorizontalAlignment="Left" Width="110" Grid.Column="0" ToolTipService.ToolTip="
2018-08-22 10:03:34 533
原创 WPF 图标定时闪烁
一. XAML:<Grid> <Button Name="_btn" Width="20" Visibility="Visible" Height="20" HorizontalAlignment="Left" Template="{DynamicResource ButtonControlTemplate}" Cursor=&
2018-08-19 14:04:46 2017
原创 C# WPF 图片按钮实现图片替换
//基本按钮样式<Style x:Key="BaseButtonBaseStyle" TargetType="{x:Type ButtonBase}"> <Setter Property="OverridesDefaultStyle" Value="True"></Setter> <
2018-08-17 15:08:09 2865
原创 TextBlock 文本内容超出控件宽度时,出现".."鼠标放上去显示全部内容
<TextBlock Grid.Column="1" Text="{Binding Name, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Center" HorizontalAlignment="Left" ...
2018-08-15 20:00:37 2800
原创 WPF - 帮助/Convert类: 界面控件是否显示(True显示/False不显示)
一: 前台XAML:Visibility="{Binding IsVisibleControl,Converter={StaticResource BoolToVisiblityConverter}}">(注意:IsVisibleControl为自定义 bool属性, 需要在ViewModel中定义一下, IsVisibleControl赋值true或者false也在ViewMode...
2018-08-15 19:24:04 2035 1
原创 WPF XAML 画线
<Grid> <!--直线--> <Line X1="20" Y1="60" X2="360" Y2="60" Stroke="Green" StrokeThickness="3"></Line> <!--虚线--&
2018-08-13 14:23:53 5410
转载 C# 线程的创建(转)
1、无参数线程的创建 1 2 3 4 5 6 Thread thread = new Thread(new ThreadStart(getpic)); thread.Start(); private void showmessage() { Console.WriteLine("hello wo...
2018-07-26 18:02:48 328
原创 C# Stopwatch计时的简单应用
Stopwatch stopwatch = new Stopwatch(); //计时开始 stopwatch.Start(); for (int i = 0; i < 1000; i++) { ; } ...
2018-07-23 09:14:39 1129
原创 WPF之自定义ToolTip样式和模板
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr...
2018-07-20 16:35:42 4147
转载 WPF(样式): 带水印&清空按钮 的 TextBox文本输入框
<Style x:Key="ClearButtonTextBox" TargetType="{x:Type TextBox}"> <Setter Property="TextAlignment" Value="Center"/> <Setter Property="VerticalContentAlignment" Valu
2018-07-19 17:47:35 1256
转载 WPF 替换背景图片
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Window.Resources> <!--替换背景img--> <BitmapIma...
2018-07-05 14:31:55 1332
转载 WPF 图片路径
转载: http://www.cnblogs.com/sntetwt/p/5402098.html一、加载本项目的图片WPF引入了统一资源标识Uri(Unified Resource Identifier)来标识和访问资源。其中较为常见的情况是用Uri加载图像。Uri表达式的一般形式为:协议+授权+路径协议:pack://授权:有两种。一种用于访问编译时已经知道的文件,用application:/...
2018-07-03 08:57:22 165
转载 WPF实现弹出窗体后的蒙版效果(转)
*蒙版弹出窗体.xaml.cs文件:/// <summary>/// 弹出消息框/// </summary>/// <param name="message">消息</param>/// <param name="owner">父级窗体</param>public static void ShowDia
2018-07-02 14:24:58 3753
转载 收藏一个经典的button样式
<Style x:Key="MyBtnStyle" TargetType="Button"> <Setter Property="Foreground" Value="Black"/> <!--修改模板属性--> <Setter Property="Template"&a
2018-06-25 16:45:40 946
转载 WPF中List<T>和ObservableCollection<T>的相互转化(实用转载)
方法一T tList = new List(tObjectStruct .ToList()); ObservableCollection tObjectStruct = new ObservableCollection(tList); 都在构造函数中即可完成方法二:tList.ForEach(p => tObjectStruct.Add(t)); ...
2018-06-22 18:47:43 3971
原创 C# 解决在string转化成int类型,"输入字符串的格式不正确"的报错
//1.判断是不是正整数 private const string regInt = "^[1-9]\\d*$"; public static bool IsNumber(string str) { return Regex.IsMatch(str, regInt); }//2.把string转换成int ...
2018-06-22 17:15:57 5429 2
翻译 C#中string[]数组和list<string>泛型的相互转换
从string[]转list<string> string[] str={"1","2"};list<string> list=new list<string>(str); 从list<string>转string[] list<string> list=new list<st
2018-06-21 18:50:19 1441
原创 C# 从文件路径中获取文件名/获取扩展名/获取没有扩展名的文件名
string fullPath = @"C:\\Documents\\2345好压诊断信息.txt";//获取文件名 : "2345好压诊断信息.txt"string filename = System.IO.Path.GetFileName(fullPath); //获取扩展名 :".txt"string extension = System.IO.Path.GetExtension(fu...
2018-06-20 13:53:30 4962
转载 WPF 自定义 Button 共用样式(实用)
<Window.Resources> <Style TargetType="{x:Type Button}"> <Setter Property="MinWidth" Value="100"></Setter> <Setter Property="MinHe
2018-06-08 17:16:11 2267
翻译 WPF之PasswordBox 界面绑定Viewmodel中的UserPassword属性 (MVVM)
WPF中PasswordBox不能直接绑定后台属性值,需要借助自定义附加属性来实现:一.界面绑定xmlns:pw="clr-namespace:XXXnamespace.Helper"<TextBlock Grid.Row="1" Text="密码:" FontSize="15" VerticalAlignment="Center"/><PasswordBox x:N
2018-06-06 15:12:40 904
原创 Button的类似超链接样式-LinkButton Style
实现方式一(只有单个按钮推荐)<!--LinkButton Style [Start]--> <Style x:Key="LinkButton" TargetType="{x:Type Button}"> <Setter Property="Template"> <Setter.Value>
2018-05-31 18:49:53 1777
原创 C# WPF带图标的listbox示例
(一) //新建项目名称: IcoListBox (二) //主界面 MainWindow.xaml 代码 :<Window x:Class="IcoListBox.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://sche...
2018-05-31 14:25:10 3496
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人