- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有以下问题:我有一个 Listview
,其中每个项目都是一个自定义控件(“DisruptionIcon”),它显示一个图标,具体取决于为自定义控件设置的属性。图标可以是多种形状中的一种(此处示例中只有“无”和“方形”)。现在的问题是,如果我在 ListView
中向下滚动并在备份之后,图标是错误的。结果是:
在向下滚动之前:
上下滚动后:
资源是:
主页.xaml:
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Name="MainPg"
>
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<ListView
Width="200"
ItemsSource="{Binding LineList, ElementName=MainPg}"
>
<ListView.ItemTemplate>
<DataTemplate>
<Grid>
<local:DisruptionIcon
DisplayName="{Binding DisplayName}"
IconType="{Binding DisplayStyle}"
Color1="{Binding Color1}"
Color2="{Binding Color2}"
/>
<TextBlock Text="{Binding DisplayName}" Foreground="Red"/>
</Grid>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Grid>
MainPage.xaml.cs:
public sealed partial class MainPage : Page
{
public MainPage()
{
LineList = new ObservableCollection<ServerLineDefinition>();
for (byte i = 0; i <= 250; i++)
{
var ds = new ServerLineDefinition("ID " + i, "FFFFFF", "000000", 1, i);
LineList.Add(ds);
}
InitializeComponent();
}
public ObservableCollection<ServerLineDefinition> LineList { get; set; }
}
我的自定义控件是这样的:DisruptionIcon.xaml:
<UserControl
x:Class="App1.DisruptionIcon"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Name="mainUc" mc:Ignorable="d"
d:DesignHeight="34" d:DesignWidth="80"
Width="80" Height="34"
>
<Grid>
<local:DisplayIconTemplateSelector Content="{Binding IconType, ElementName=mainUc}">
<local:DisplayIconTemplateSelector.StyleNone>
<DataTemplate>
<Grid/>
</DataTemplate>
</local:DisplayIconTemplateSelector.StyleNone>
<local:DisplayIconTemplateSelector.StyleSquare>
<DataTemplate>
<Rectangle
Width="80"
Height="32"
Fill="{Binding Color2, ElementName=mainUc}"
VerticalAlignment="Top"
HorizontalAlignment="Left"
StrokeThickness="2"
Stroke="{Binding Color1, ElementName=mainUc}"
/>
</DataTemplate>
</local:DisplayIconTemplateSelector.StyleSquare>
</local:DisplayIconTemplateSelector>
<Viewbox
Stretch="Uniform"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Margin="8,0"
>
<TextBlock
Text="{Binding DisplayName, ElementName=mainUc}"
Foreground="{Binding Color1, ElementName=mainUc}"
Height="auto"
VerticalAlignment="Top"
TextWrapping="NoWrap"
FontWeight="Bold"
TextAlignment="Center"
Margin="0,-2,0,0"
/>
</Viewbox>
</Grid>
这是 disruptionicon.xaml.cs
中 DisruptionIcon
的代码,其中基本上属性仅由 DependencyProperties 绑定(bind),颜色将转换为 SolidColorBrush
如果它们以字符串形式提供。由于应用程序设计,这是我需要的东西:
public sealed partial class DisruptionIcon
{
public DisruptionIcon()
{
Color1 = new SolidColorBrush(Colors.White);
Color2 = new SolidColorBrush(Colors.Black);
IconType = DisplayStyle.None;
DisplayName = "";
InitializeComponent();
}
#region Color1
/// <summary>
/// Used for the View of multiple Icons. Contains an IconId and the text to show for every Entry
/// </summary>
public object Color1
{
get { return (object)GetValue(DisruptionColor1Property); }
set { SetValue(DisruptionColor1Property, value); }
}
// Using a DependencyProperty as the backing store for ItemSource. This enables animation, styling, binding, etc...
public static readonly DependencyProperty DisruptionColor1Property =
DependencyProperty.Register("Color1", typeof(object), typeof(DisruptionIcon), new PropertyMetadata(null, DisruptionColor1PropertyCallback));
public static void DisruptionColor1PropertyCallback(DependencyObject dp, DependencyPropertyChangedEventArgs args)
{
var iconColor1 = ((DisruptionIcon)dp).Color1;
if (iconColor1 == null || iconColor1 is SolidColorBrush)
return;
//Convert Colors
if (iconColor1 is string)
iconColor1 = ConvertToSolidColorBrush((string)iconColor1);
((DisruptionIcon)dp).Color1 = iconColor1;
}
#endregion
#region Color2
/// <summary>
/// Used for the View of multiple Icons. Contains an IconId and the text to show for every Entry
/// </summary>
public object Color2
{
get { return (object)GetValue(DisruptionColor2Property); }
set { SetValue(DisruptionColor2Property, value); }
}
// Using a DependencyProperty as the backing store for ItemSource. This enables animation, styling, binding, etc...
public static readonly DependencyProperty DisruptionColor2Property =
DependencyProperty.Register("Color2", typeof(object), typeof(DisruptionIcon), new PropertyMetadata(null, DisruptionColor2PropertyCallback));
public static void DisruptionColor2PropertyCallback(DependencyObject dp, DependencyPropertyChangedEventArgs args)
{
var iconColor2 = ((DisruptionIcon)dp).Color2;
if (iconColor2 == null || iconColor2 is SolidColorBrush)
return;
//Convert Colors
if (iconColor2 is string)
iconColor2 = ConvertToSolidColorBrush((string)iconColor2);
((DisruptionIcon)dp).Color2 = iconColor2;
}
#endregion
#region IconType
/// <summary>
/// Used for the View of multiple Icons. Contains an IconId and the text to show for every Entry
/// </summary>
public object IconType
{
get { return (DisplayStyle)GetValue(DisruptionDisplayStyleProperty); }
set { SetValue(DisruptionDisplayStyleProperty, value); }
}
// Using a DependencyProperty as the backing store for ItemSource. This enables animation, styling, binding, etc...
public static readonly DependencyProperty DisruptionDisplayStyleProperty =
DependencyProperty.Register("IconType", typeof(object), typeof(DisruptionIcon), new PropertyMetadata(DisplayStyle.None, DisruptionDisplayStylePropertyCallback));
public static void DisruptionDisplayStylePropertyCallback(DependencyObject dp, DependencyPropertyChangedEventArgs args)
{
var iconDisplayStyle = ((DisruptionIcon)dp).IconType;
if (args.NewValue is Int32)
{
((DisruptionIcon)dp).IconType = (DisplayStyle)args.NewValue;
}
}
#endregion
#region DisplayName
/// <summary>
/// Used for the View of multiple Icons. Contains an IconId and the text to show for every Entry
/// </summary>
public string DisplayName
{
get { return (string)GetValue(DisruptionDisplayNameProperty); }
set { SetValue(DisruptionDisplayNameProperty, value); }
}
// Using a DependencyProperty as the backing store for ItemSource. This enables animation, styling, binding, etc...
public static readonly DependencyProperty DisruptionDisplayNameProperty =
DependencyProperty.Register("DisplayName", typeof(string), typeof(DisruptionIcon), new PropertyMetadata(null, DisruptionDisplayNamePropertyCallback));
public static void DisruptionDisplayNamePropertyCallback(DependencyObject dp, DependencyPropertyChangedEventArgs args)
{
var iconDisplayName = ((DisruptionIcon)dp).DisplayName;
if (iconDisplayName == null)
return;
((DisruptionIcon)dp).DisplayName = iconDisplayName;
}
#endregion
/// <summary>
/// Converts a ColorCode (i.e. FF8899) to SolidColorBrush
/// </summary>
/// <param name="colorCode">Six-Digit Hex-Code of the Color</param>
/// <returns></returns>
private static SolidColorBrush ConvertToSolidColorBrush(string colorCode)
{
if (colorCode != null && colorCode.Length == 6)
{
return new SolidColorBrush(Color.FromArgb(255,
Convert.ToByte(colorCode.Substring(0, 2), 16),
Convert.ToByte(colorCode.Substring(2, 2), 16),
Convert.ToByte(colorCode.Substring(4), 16)));
}
return new SolidColorBrush(Colors.Black);
}
}
我的模板选择器 DisplayIconTemplateSelector.cs:
public class DisplayIconTemplateSelector : ContentControl
{
protected override void OnContentChanged(object oldContent, object newContent)
{
base.OnContentChanged(oldContent, newContent);
ContentTemplate = SelectTemplate(newContent, this);
}
public DataTemplate StyleNone { get; set; }
public DataTemplate StyleSquare { get; set; }
public DataTemplate SelectTemplate(object item, DependencyObject container)
{
var quoteItem = (DisplayStyle)item;
switch (quoteItem)
{
default:
return StyleNone;
case DisplayStyle.Square:
return StyleSquare;
}
}
}
最后是我的 ServerLineDefinition 类:
public class ServerLineDefinition : INotifyPropertyChanged
{
public ServerLineDefinition() { }
public ServerLineDefinition(
string displayName,
string backgroundColor,
string foregroundColor,
int displayStyle,
int id)
{
DisplayName = displayName;
Color2 = backgroundColor;
Color1 = foregroundColor;
DisplayStyle = displayStyle;
Id = id;
}
public int Id { get; set; }
public string DisplayName { get; set; }
public int DisplayStyle { get; set; }
/// <summary>
/// RGB-Value for BackgroundColor
/// </summary>
public string Color2 { get; set; }
/// <summary>
/// RGB-Value for ForegroundColor
/// </summary>
public string Color1 { get; set; }
#region PropertyChanged
public event PropertyChangedEventHandler PropertyChanged; //To Update Content on the Form
/// <summary>
/// Helper for Triggering PropertyChanged
/// </summary>
/// <param name="triggerControl">The Name of the Property to update</param>
private void RaisePropertyChanged(string triggerControl)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(triggerControl));
}
}
#endregion
}
在我看来,ListView
的缓存存在问题。如果我将 ListView
替换为包裹在 ScrollViewer
中的 ItemsControl
,则问题不存在,但会占用更多内存并需要更多时间载入。此外,如果您取消注释作为注释添加到 MainPage.xaml
中的 TextBlock
,您会在每一行中看到正确的 ID,但会看到错误的图像,如截图。
编辑:如果我将任何控件放在 ScrollViewer
中,那么它会很慢,但可以工作。如果我将 DisruptionIcon.xaml 的整个代码直接放到 MainPage 中引用 DirutpionIcon 的位置,它也可以工作。
最佳答案
尝试为 ItemsControl 使用此样式 setter ,关键字“虚拟化”:
<Setter Property="ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<ItemsStackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</Setter.Value>
</Setter>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ItemsControl">
<Border x:Name="LayoutRoot">
<ScrollViewer>
<ItemsPresenter/>
</ScrollViewer>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
并在您的DisplayName 的DependencyProperty 上,更新为:
public static void DisruptionDisplayNamePropertyCallback(DependencyObject dp, DependencyPropertyChangedEventArgs args)
{
var iconDisplayName = (string)e.NewValue;
((DisruptionIcon)dp).DisplayName = iconDisplayName;
}
关于c# - Windows UI 中的 ListView 缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31817050/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!