- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 MVVM light 创建我的第一个 C# UWP 桌面应用程序,我在内存使用和 DataTemplates 方面遇到了一些小问题。在 Button.cs 中有一个 ObservableCollection,它可能有不同的对象(IExample),例如:圆形、正方形和其他...根据该集合中的内容,应显示适当的 UI。
这是我的代码:
按钮.cs:
using GalaSoft.MvvmLight;
using System.Collections.ObjectModel;
namespace MvvmLight1.Model
{
public class Button : ObservableObject
{
public string Name { get; set; }
public const string InternalObjectsPropertyName = "InternalObjects";
private ObservableCollection<IExample> _internalObjects = null;
public ObservableCollection<IExample> InternalObjects
{
get
{
return _internalObjects;
}
set
{
if (_internalObjects == value)
{
return;
}
_internalObjects = value;
RaisePropertyChanged(InternalObjectsPropertyName);
}
}
public Button()
{
InternalObjects = new ObservableCollection<IExample>();
}
}
}
主页.xaml:
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MvvmLight1"
xmlns:ignore="http://www.galasoft.ch/ignore"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:interactivity="using:Microsoft.Xaml.Interactivity"
xmlns:core="using:Microsoft.Xaml.Interactions.Core"
xmlns:local1="using:MvvmLight1.Model"
x:Class="MvvmLight1.MainPage"
mc:Ignorable="d ignore"
DataContext="{Binding Main, Source={StaticResource Locator}}">
<Page.Resources>
<!-- template for circle -->
<DataTemplate x:Key="CircleTemplate">
<StackPanel>
<TextBlock Text="This is the template for circle..." Foreground="Crimson" HorizontalAlignment="Center"></TextBlock>
<ColorPicker x:Name="myColorPicker" ColorSpectrumShape="Ring"/>
</StackPanel>
</DataTemplate>
<!-- template for square -->
<DataTemplate x:Key="SquareTemplate">
<StackPanel>
<TextBlock Text="This is the template for square..." Foreground="Green" HorizontalAlignment="Center"></TextBlock>
<ColorPicker x:Name="myColorPicker" ColorSpectrumShape="Ring"/>
</StackPanel>
</DataTemplate>
<local1:TemplateSelector x:Key="MySelector"
CircleTemplate="{StaticResource CircleTemplate}"
SquareTemplate="{StaticResource SquareTemplate}"
/>
</Page.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="2*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!-- buttons -->
<GridView ItemsSource="{Binding ButtonsList}" Grid.Row="0" SelectedItem="{Binding SelectedButton, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<GridView.ItemTemplate>
<DataTemplate x:DataType="x:String">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="250"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<TextBlock Text="{Binding Name}" Foreground="Red"
FontSize="15" Grid.Column="0" VerticalAlignment="Stretch" HorizontalAlignment="Center"/>
</Grid>
</DataTemplate>
</GridView.ItemTemplate>
</GridView>
<!-- properties -->
<ItemsControl ItemsSource="{Binding InternalObjects, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" ItemTemplateSelector="{StaticResource MySelector}" DataContext="{Binding SelectedButton}" Grid.Column="1"></ItemsControl>
</Grid>
public class MainViewModel : ViewModelBase
{
public const string ButtonsListPropertyName = "ButtonsList";
private ObservableCollection<Button> _buttonsList = null;
public ObservableCollection<Button> ButtonsList
{
get
{
return _buttonsList;
}
set
{
if (_buttonsList == value)
{
return;
}
_buttonsList = value;
RaisePropertyChanged(ButtonsListPropertyName);
}
}
public const string SelectedButtonPropertyName = "SelectedButton";
private Button _selectedButton = null;
public Button SelectedButton
{
get
{
return _selectedButton;
}
set
{
if (_selectedButton == value)
{
return;
}
_selectedButton = value;
RaisePropertyChanged(SelectedButtonPropertyName);
}
}
public MainViewModel()
{
ButtonsList = new ObservableCollection<Button>();
// create new buttons
for (var i = 0; i < 12; i++)
{
ButtonsList.Add(new Button());
}
// for few of them add circles...
for (var i = 0; i < 3; i++)
{
ButtonsList[i].Name = "Button with Circle";
ButtonsList[i].InternalObjects.Add(new Circles() { Name = "Circles" });
}
// for another add squares...
for (var i = 3; i < 6; i++)
{
ButtonsList[i].Name = "Button with Squres";
ButtonsList[i].InternalObjects.Add(new Squares() { Name = "Squares" });
}
// rest of them mixed...
for (var i = 6; i < 12; i++)
{
ButtonsList[i].Name = "Button with Circles and Squres";
ButtonsList[i].InternalObjects.Add(new Circles() { Name = "Circles" });
ButtonsList[i].InternalObjects.Add(new Squares() { Name = "Squares" });
}
}
}
Circles.cs:
public class Circles : IExample
{
public string Name { get; set; }
}
正方形.cs:
public class Squares : IExample
{
public string Name { get; set; }
}
模板选择器.cs:
public class TemplateSelector : DataTemplateSelector
{
public DataTemplate CircleTemplate { get; set; }
public DataTemplate SquareTemplate { get; set; }
protected override DataTemplate SelectTemplateCore(object item)
{
if (item.GetType() == typeof(Circles))
{
return CircleTemplate;
}
else if (item.GetType() == typeof(Squares))
{
return SquareTemplate;
}
else
{
return null;
}
}
protected override DataTemplate SelectTemplateCore(object item, DependencyObject container)
{
return SelectTemplateCore(item);
}
}
我做错了什么?为什么内存从 19mb 增长到 91mb?
[编辑]:完整的解决方案在这里:download
最佳答案
每次您选择一个按钮时,DataTemplateSelector 都会从您的圆形和方形模板创建新的控件。我能够通过将模板添加到 ItemsControl 的资源并在每次更新 InternalObjects-Collection 时创建/处置控件来避免这种情况:
<ItemsControl ItemsSource="{Binding InternalObjects, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" DataContext="{Binding SelectedButton}" Grid.Column="1">
<ItemsControl.Resources>
<DataTemplate DataType="{x:Type local:Circles}">
<TextBlock Text="This is the template for a circle too..." Foreground="Crimson" HorizontalAlignment="Center"></TextBlock>
</DataTemplate>
<DataTemplate DataType="{x:Type local:Squares}">
<TextBlock Text="This is the template for a square too..." Foreground="Crimson" HorizontalAlignment="Center"></TextBlock>
</DataTemplate>
</ItemsControl.Resources>
</ItemsControl>
使用 ComboBox 对其进行测试:
<ComboBox ItemsSource="{Binding ButtonsList}" Grid.Row="0" SelectedItem="{Binding SelectedButton, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ComboBox.ItemTemplate>
<DataTemplate DataType="x:String">
<TextBlock Text="{Binding Name}" Foreground="Red" FontSize="15" Grid.Column="0" VerticalAlignment="Stretch" HorizontalAlignment="Center"/>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
根据模板的大小,它可能仍会消耗大量内存。
要考虑的另一个选择是从模板中提取控件并创建它的单个实例(如果可能,例如 ColorPicker)。
否则您需要依赖 C#/UWP 来为您管理创建的控件。
关于C# UWP DataTemplate 内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51876432/
我正在使用 DataTemplate 将 View 应用于 ViewModel。我有一种情况,当 View 的一个实例(DataTemplate)中发生某件事时,我需要在所有其他实例中采取行动。 我已
如何从 DataTemplate 派生新类,然后用它代替 DataTemplate? 例如,在 C# 中: public class DerivedDataTemplate : DataTemplat
我有以下xaml; 当我使用 Node 模板显示 No
我想在 dataTemplate 中使用 dataTemplale。我想像这样在列表框中显示数据: 这就是我得到的。它不起作用。 cl
大家好,我正在尝试更改 dataGrid 中列的模板,但我找不到在 XAML 中执行此操作的方法。我正在尝试通过这种方式来做
wpf 应用程序中的默认 DataTemplate 显示 .ToString() 方法的结果。我正在开发一个默认 DataTemplate 不显示任何内容的应用程序。 我试过:
我发现自己有点束手无策……有束缚……呵呵……(跛脚) 无论如何...我需要引用主 ViewModel 的属性,但来自 DataTemplate ,它本身在另一个 DataTemplate 中... 看
我已经为我喜欢的项目中的一些数据类型创建了几个数据模板。这些数据模板真的很酷,因为它们像魔术一样工作,无论何时何地出现在 UI 中,都神奇地改变了数据类型实例的外观。现在我希望能够在一个特定的列表框中
这个问题在这里已经有了答案: 11年前关闭。 Possible Duplicate: Datatemplate inheritance 我有几个不是子类的数据类型,它们也不共享一个接口(interfa
我有一个用代码隐藏在 XAML 中定义的 ResouceDictionary。我需要使用鼠标事件和数据绑定(bind)定义一些特定于 View 的行为,为此我需要访问在 DataTemplate 中定
我有一个用代码隐藏在 XAML 中定义的 ResouceDictionary。我需要使用鼠标事件和数据绑定(bind)定义一些特定于 View 的行为,为此我需要访问在 DataTemplate 中定
我创建了一个 DataTemplateSelector,它使用一组已知接口(interface)进行初始化。如果传递到选择器的项目实现了这些接口(interface)之一,则返回关联的数据模板。 首先
是否可以将数据模板用于没有 ListBox 或其他项目控件的单个项目? 我有一个数据模板,我想在 xaml 中实例化,而不是在列表中,只是在边框内,并设置其数据上下文。 类似(伪):
在我的 MainWindow.xaml 中,我对 ResourceDictionary 有以下引用: 在 Main
我在数据模板中有 WPF ComboBox(列表框中有很多组合框),我想处理输入按钮。如果它是例如,那将很容易。一个按钮 - 我会使用命令 + 相对绑定(bind)路径等。不幸的是,我不知道如何使用命
我想对 ItemsCollection 进行数据绑定(bind),但不是渲染集合项,而是渲染通过集合项上的属性到达的子对象。 更具体地说:这将是游戏的 2D map 查看器(尽管在当前状态下它还不是
我使用 MasterDetailsView控制。它有 MasterHeaderTemplate属性(property)。我想添加一个 TextBox以便执行元素搜索。我不明白该怎么做。因为DataTe
我为自己设计的一个非常基本的 WPF 练习遇到了一个奇怪的问题,即从 ViewModel 动态填充菜单。给定以下主窗口标记:
在设计新的 WPF 应用程序时,我注意到在使用 DataTemplates 对控件进行数据绑定(bind)期间不会抛出异常。为了测试,我用尽可能少的逻辑编写了以下简单的用户控件。我正在使用在 WIN7
我有一个关于 this one 的问题:我正在尝试将一个事件附加到我的 StackPanel,但在使用 XamlReader 时它似乎没有连接。我无法调用 ChildItem_Load 方法。有谁知道
我是一名优秀的程序员,十分优秀!