上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 120 下一页
摘要: <Window x:Class="WpfApp403.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2 阅读全文
posted @ 2024-09-23 17:26 FredGrit 阅读(12) 评论(0) 推荐(0)
摘要: //xaml <Window x:Class="WpfApp402.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/ 阅读全文
posted @ 2024-09-23 10:16 FredGrit 阅读(11) 评论(0) 推荐(0)
摘要: AllowsTransparency="True" WindowStyle="None" KeyDown="Window_KeyDown" public MainWindow() { InitializeComponent(); this.SizeChanged += MainWindow_Size 阅读全文
posted @ 2024-09-23 00:28 FredGrit 阅读(20) 评论(0) 推荐(0)
摘要: <ListBox.ItemTemplate> <DataTemplate> <Grid> <Image Source="{Binding ImgUrl}" RenderOptions.BitmapScalingMode="LowQuality" Width="{Binding ActualWidth 阅读全文
posted @ 2024-09-23 00:06 FredGrit 阅读(13) 评论(0) 推荐(0)
摘要: CommandParameter pass SelectedItem of control <ListBox.ContextMenu> <ContextMenu> <MenuItem Header="Save Image" Command="{Binding SaveImgCommand}" Com 阅读全文
posted @ 2024-09-22 23:54 FredGrit 阅读(61) 评论(0) 推荐(0)
摘要: <Window x:Class="WpfApp399.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2 阅读全文
posted @ 2024-09-22 23:03 FredGrit 阅读(13) 评论(0) 推荐(0)
摘要: <DataGrid ItemsSource="{StaticResource booksData}" EnableColumnVirtualization="True" EnableRowVirtualization="True" FrozenColumnCount="2" AreRowDetail 阅读全文
posted @ 2024-09-22 20:15 FredGrit 阅读(18) 评论(0) 推荐(0)
摘要: <Grid> <DataGrid ItemsSource="{StaticResource booksData}" EnableColumnVirtualization="True" EnableRowVirtualization="True" RowDetailsVisibilityMode="V 阅读全文
posted @ 2024-09-22 20:09 FredGrit 阅读(60) 评论(0) 推荐(0)
摘要: <DataGrid ItemsSource="{StaticResource booksData}" ClipboardCopyMode="IncludeHeader"/> //xaml <Window x:Class="WpfApp398.MainWindow" xmlns="http://sch 阅读全文
posted @ 2024-09-22 19:55 FredGrit 阅读(14) 评论(0) 推荐(0)
摘要: System.Collections.IList items = (System.Collections.IList)obj; var booksList = items.Cast<Book>()?.ToList(); 阅读全文
posted @ 2024-09-22 19:43 FredGrit 阅读(15) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 120 下一页