随笔分类 -  wpf

上一页 1 2 3 4 5 6 7 8 ··· 20 下一页
wpf xaml
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System 阅读全文
posted @ 2024-12-20 18:07 FredGrit 阅读(11) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Threading.Ta 阅读全文
posted @ 2024-12-20 17:35 FredGrit 阅读(7) 评论(0) 推荐(0) 编辑
摘要:<Window x:Class="WpfApp76.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/20 阅读全文
posted @ 2024-12-20 15:47 FredGrit 阅读(6) 评论(0) 推荐(0) 编辑
摘要:<Window x:Class="WpfApp73.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/20 阅读全文
posted @ 2024-12-20 15:19 FredGrit 阅读(14) 评论(0) 推荐(0) 编辑
摘要:<Window x:Class="WpfApp74.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/20 阅读全文
posted @ 2024-12-20 14:40 FredGrit 阅读(6) 评论(0) 推荐(0) 编辑
摘要:<Window x:Class="WpfApp72.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/20 阅读全文
posted @ 2024-12-20 13:50 FredGrit 阅读(9) 评论(0) 推荐(0) 编辑
摘要:<Window.Icon> <DrawingImage> <DrawingImage.Drawing> <GeometryDrawing Brush="Orange"> <GeometryDrawing.Pen> <Pen Brush="Black" Thickness="10"/> </Geome 阅读全文
posted @ 2024-12-20 13:43 FredGrit 阅读(6) 评论(0) 推荐(0) 编辑
摘要://xaml <Window x:Class="WpfApp70.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/w 阅读全文
posted @ 2024-12-20 10:48 FredGrit 阅读(3) 评论(0) 推荐(0) 编辑
摘要:Copy from https://github.com/SEilers/WpfPanAndZoom //canvas.xaml <Canvas x:Class="WpfApp69.CanvasZoomAndPanControl" xmlns="http://schemas.microsoft.co 阅读全文
posted @ 2024-12-17 23:59 FredGrit 阅读(40) 评论(0) 推荐(0) 编辑
摘要:1 //xaml 2 <Window x:Class="WpfApp67.MainWindow" 3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 4 xmlns:x="http://schemas.microso 阅读全文
posted @ 2024-12-15 20:13 FredGrit 阅读(21) 评论(0) 推荐(0) 编辑
摘要://xaml <Window x:Class="WpfApp68.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/w 阅读全文
posted @ 2024-12-15 01:12 FredGrit 阅读(9) 评论(0) 推荐(0) 编辑
摘要://<Window x:Class="WpfApp64.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/ 阅读全文
posted @ 2024-12-14 00:32 FredGrit 阅读(9) 评论(0) 推荐(0) 编辑
摘要://xaml <Window x:Class="WpfApp62.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/w 阅读全文
posted @ 2024-12-13 00:46 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要://xaml <Window x:Class="WpfApp58.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/w 阅读全文
posted @ 2024-12-10 00:49 FredGrit 阅读(17) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System 阅读全文
posted @ 2024-12-07 21:47 FredGrit 阅读(17) 评论(0) 推荐(0) 编辑
摘要:<Window x:Class="WpfApp57.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/20 阅读全文
posted @ 2024-12-07 21:35 FredGrit 阅读(8) 评论(0) 推荐(0) 编辑
摘要:<Window x:Class="WpfApp56.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/20 阅读全文
posted @ 2024-12-07 21:19 FredGrit 阅读(4) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System 阅读全文
posted @ 2024-12-07 19:06 FredGrit 阅读(7) 评论(0) 推荐(0) 编辑
摘要:public List<Visual> FindVisualChildren(DependencyObject dpObj) { List<Visual> childrenList = new List<Visual>(); int childrenCount = VisualTreeHelper. 阅读全文
posted @ 2024-12-07 15:58 FredGrit 阅读(14) 评论(0) 推荐(0) 编辑
摘要:public class DatagridMultiSelectBehavior : Behavior<DataGrid> { protected override void OnAttached() { base.OnAttached(); } protected override void On 阅读全文
posted @ 2024-12-04 23:44 FredGrit 阅读(5) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 20 下一页
点击右上角即可分享
微信分享提示