摘要: CommandParameter pass SelectedItem of control <ListBox.ContextMenu> <ContextMenu> <MenuItem Header="Save Image" Command="{Binding SaveImgCommand}" Com 阅读全文
posted @ 2024-09-22 23:54 FredGrit 阅读(8) 评论(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 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <DataGrid ItemsSource="{StaticResource booksData}" EnableColumnVirtualization="True" EnableRowVirtualization="True" FrozenColumnCount="2" AreRowDetail 阅读全文
posted @ 2024-09-22 20:15 FredGrit 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <Grid> <DataGrid ItemsSource="{StaticResource booksData}" EnableColumnVirtualization="True" EnableRowVirtualization="True" RowDetailsVisibilityMode="V 阅读全文
posted @ 2024-09-22 20:09 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要: <DataGrid ItemsSource="{StaticResource booksData}" ClipboardCopyMode="IncludeHeader"/> //xaml <Window x:Class="WpfApp398.MainWindow" xmlns="http://sch 阅读全文
posted @ 2024-09-22 19:55 FredGrit 阅读(3) 评论(0) 推荐(0) 编辑
摘要: System.Collections.IList items = (System.Collections.IList)obj; var booksList = items.Cast<Book>()?.ToList(); 阅读全文
posted @ 2024-09-22 19:43 FredGrit 阅读(5) 评论(0) 推荐(0) 编辑
摘要: SelectedItems convert to IList as below failed; IList<Book> collection2 = (IList<Book>)obj; System.InvalidCastException HResult=0x80004002 Message=Una 阅读全文
posted @ 2024-09-22 19:42 FredGrit 阅读(6) 评论(0) 推荐(0) 编辑
摘要: private void SelectedCommandExecuted(object obj) { if (obj != null && obj is DataGrid dg) { if (dg != null) { var selectedBks = dg.SelectedItems; if ( 阅读全文
posted @ 2024-09-22 17:26 FredGrit 阅读(9) 评论(0) 推荐(0) 编辑
摘要: <Window x:Class="WpfApp397.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2 阅读全文
posted @ 2024-09-22 14:48 FredGrit 阅读(6) 评论(0) 推荐(0) 编辑
摘要: <Window x:Class="WpfApp397.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2 阅读全文
posted @ 2024-09-22 14:26 FredGrit 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <Window.Resources> <ObjectDataProvider x:Key="kindEnum" MethodName="GetValues" ObjectType="{x:Type sys:Enum}"> <ObjectDataProvider.MethodParameters> < 阅读全文
posted @ 2024-09-22 14:22 FredGrit 阅读(3) 评论(0) 推荐(0) 编辑