上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: 首先在window窗体中设置属性ResizeMode="NoResize" 然后这个时候还可以在任务管理器中对程序进行最大化最小化 当触发最大化最小化事件时,进行拦截 前台代码 StateChanged="window_StateChanged" 后台代码 private void window_S 阅读全文
posted @ 2021-12-29 10:24 奇迹之耀 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 效果: <Window x:Class="WpfApp65.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winf 阅读全文
posted @ 2021-12-24 17:20 奇迹之耀 阅读(119) 评论(0) 推荐(0) 编辑
摘要: private bool HasScrollbar(TextBox TextBox) { bool HasScrollbar = false; List<Grid> list = FindVisualChild<Grid>(TextBox); foreach (var item in list) { 阅读全文
posted @ 2021-12-17 16:29 奇迹之耀 阅读(124) 评论(0) 推荐(0) 编辑
摘要: private void InsertText(RichTextBox tb, string text) { tb.CaretPosition.InsertTextInRun(text); if (tb.CaretPosition.LogicalDirection == LogicalDirecti 阅读全文
posted @ 2021-12-07 16:01 奇迹之耀 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 前台 <Window x:Class="hittest.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/ 阅读全文
posted @ 2021-12-01 15:09 奇迹之耀 阅读(242) 评论(1) 推荐(0) 编辑
摘要: 在richtextbox中添加 <RichTextBox.Resources> <Style TargetType="{x:Type Paragraph}"> <Setter Property="Margin" Value="0"/> </Style> </RichTextBox.Resources 阅读全文
posted @ 2021-11-29 11:01 奇迹之耀 阅读(334) 评论(0) 推荐(0) 编辑
摘要: Dispatcher.Invoke是同步执行 Dispatcher.Invoke(new Action(() => { stackPanel.Children.Add(new TextBlock() { Text = "1" }); })); stackPanel.Children.Add(new 阅读全文
posted @ 2021-11-23 19:08 奇迹之耀 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 使用cmd命令行录制的可以加入参数-qscale 取值范围是0.01-255,设置的数值越小,则越清晰 下面是我录制时使用的命令行 string command = "ffmpeg -f gdigrab -framerate 20 -video_size 1920*1080 -i desktop - 阅读全文
posted @ 2021-10-29 10:43 奇迹之耀 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 后台代码 WindowsFormsHost host = new WindowsFormsHost(); System.Windows.Forms.PictureBox picture = new System.Windows.Forms.PictureBox(); host.Child = pic 阅读全文
posted @ 2021-10-27 10:43 奇迹之耀 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 效果: 源代码点我下载 阅读全文
posted @ 2021-10-14 11:00 奇迹之耀 阅读(242) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页