带文本框的列表视图 WIndows10
Listview with Textbox WIndows10
我有一个大问题。
我的主页是一个 shell,带有 splitview 和一个用于加载其他页面的框架元素。
我添加了不同的网页
1.页面为空
2. 页面包含一个带有不同项目的列表视图(来自 ObservableCollection)。如果 ItemTemplate 包含一个 TextBox,当我在页面之间切换几次时,应用程序会崩溃。我不知道该如何处理?我导航到页面 #2
每 2-3 次内存消耗就会增加
XAML:
后面的代码:
public Day()
{
this.InitializeComponent();
this.lv_schultag.ItemsSource = (App.Current as App).schuljahr.actual_day[0].stunden;
}
调试器在 App.g.i.cs 处停止:
#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
UnhandledException += (sender, e) =>
{
if (global::System.Diagnostics.Debugger.IsAttached)global::System.Diagnostics.Debugger.Break();
};
#endif
未处理的异常 e
是:
Für diesen Vorgang ist nicht genügend Speicher verfügbar.
英文:
System.Exception System.OutOfMemoryException.
内存使用量约为 65MB...
你知道为什么会这样吗
有了最新的更新和 SDK 就没有任何问题了...只是让你知道
更新您的 visual studio 和 UWP 开发工具,现在一切正常。我在使用 mapcontrol 时遇到了类似的问题。
我有一个大问题。
我的主页是一个 shell,带有 splitview 和一个用于加载其他页面的框架元素。
我添加了不同的网页 1.页面为空 2. 页面包含一个带有不同项目的列表视图(来自 ObservableCollection)。如果 ItemTemplate 包含一个 TextBox,当我在页面之间切换几次时,应用程序会崩溃。我不知道该如何处理?我导航到页面 #2
每 2-3 次内存消耗就会增加XAML:
后面的代码:
public Day()
{
this.InitializeComponent();
this.lv_schultag.ItemsSource = (App.Current as App).schuljahr.actual_day[0].stunden;
}
调试器在 App.g.i.cs 处停止:
#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
UnhandledException += (sender, e) =>
{
if (global::System.Diagnostics.Debugger.IsAttached)global::System.Diagnostics.Debugger.Break();
};
#endif
未处理的异常 e
是:
Für diesen Vorgang ist nicht genügend Speicher verfügbar.
英文:
System.Exception System.OutOfMemoryException.
内存使用量约为 65MB...
你知道为什么会这样吗
有了最新的更新和 SDK 就没有任何问题了...只是让你知道
更新您的 visual studio 和 UWP 开发工具,现在一切正常。我在使用 mapcontrol 时遇到了类似的问题。