上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 123 下一页
摘要: //custom control <UserControl x:Class="WpfApp389.ElpImageTbk" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schema 阅读全文
posted @ 2024-09-21 14:20 FredGrit 阅读(28) 评论(0) 推荐(0)
摘要: <ListBox.ItemTemplate> <DataTemplate> <local:ImageTbk UCImgUrl="{Binding DataContext.ImgUrl, RelativeSource={RelativeSource Mode=FindAncestor,Ancestor 阅读全文
posted @ 2024-09-21 13:45 FredGrit 阅读(132) 评论(0) 推荐(0)
摘要: When an items control is using a virtualizing panel and it contains a large number of complex items, setting IsDeferredScrollingEnabled to true can re 阅读全文
posted @ 2024-09-20 17:31 FredGrit 阅读(30) 评论(0) 推荐(0)
摘要: //xaml <Window x:Class="WpfApp386.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/ 阅读全文
posted @ 2024-09-20 16:23 FredGrit 阅读(21) 评论(0) 推荐(0)
摘要: public class MyData : ObservableCollection<string> { public MyData() { for(int i=0;i<100000;i++) { Add($"{i+1}__{Guid.NewGuid().ToString("N")}"); } } 阅读全文
posted @ 2024-09-20 16:11 FredGrit 阅读(20) 评论(0) 推荐(0)
摘要: <ListBox x:Name="lbx" SelectedIndex="0" ItemsSource="{Binding BooksCollection,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" VirtualizingPanel.IsCo 阅读全文
posted @ 2024-09-20 11:46 FredGrit 阅读(24) 评论(0) 推荐(0)
摘要: <ListBox x:Name="lbx" SelectedIndex="0" ItemsSource="{Binding BooksCollection,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" VirtualizingPanel.IsCo 阅读全文
posted @ 2024-09-20 11:38 FredGrit 阅读(50) 评论(0) 推荐(0)
摘要: //xaml <ListBox x:Name="lbx" SelectedIndex="0" ItemsSource="{Binding BooksCollection,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" VirtualizingPan 阅读全文
posted @ 2024-09-20 11:31 FredGrit 阅读(33) 评论(0) 推荐(0)
摘要: private Color GetRndColor() { Color cr = new Color(); cr.A = 255; cr.R = (byte)(rnd.Next(0, 255)); cr.G = (byte)(rnd.Next(0, 255)); cr.B = (byte)(rnd. 阅读全文
posted @ 2024-09-19 22:21 FredGrit 阅读(70) 评论(0) 推荐(0)
摘要: //usercontrol.xaml <UserControl x:Class="WpfApp381.ElpImgTbk" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schema 阅读全文
posted @ 2024-09-19 21:55 FredGrit 阅读(30) 评论(0) 推荐(0)
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 123 下一页