我正在开发Windows应用商店应用,但我遇到了问题。
我的计算机完全没有错误地离开我的电脑。 离开电脑几天后,我开始尝试运行我的程序。 它立即崩溃并声明:“AccessViolationException未处理。试图读取或写入受保护的内存。这通常表明其他内存已损坏。”在InitializeComponent。
但是,我可以将我的App.Xaml.cs文件中的StartPage更改为OnLaunched方法中的Mainpage,它可以正常工作。但后来我没有登录页面。我无法从Mainpage重定向到LoginPage,否则它会崩溃。
我的CallStack [外部代码]
EmployeeAssistant.exe!EmployeeAssistant.PagesWithSnappedViews.LoginPage.LoginPage()第49行+ 0x8字节C# [外部代码] EmployeeAssistant.exe!EmployeeAssistant.App.OnLaunched(Windows.ApplicationModel.Activation.LaunchActivatedEventArgs args)第58行+ 0x42字节C# [外部代码]
我的当地人
-------------------编辑-------------------
private readonly ObservableCollection<PropertyInfo> _colorSource = new ObservableCollection<PropertyInfo>();
private string _selectedColorName;
public ObservableCollection<PropertyInfo> ColorSource
{
get { return _colorSource; }
}
public string SelectedColorName
{
get { return _selectedColorName; }
set
{
_selectedColorName = value;
OnPropertyChanged();
}
}
public LoginPage()
{
InitializeComponent();
var colors = typeof(Colors).GetTypeInfo().DeclaredProperties;
foreach (var item in colors)
{
ColorSource.Add(item);
}
}
App.OnLaunched:
/// <summary>
/// Invoked when the application is launched normally by the end user. Other entry points
/// will be used when the application is launched to open a specific file, to display
/// search results, and so forth.
/// </summary>
/// <param name="args">Details about the launch request and process.</param>
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: Load state from previously suspended application
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
if (!rootFrame.Navigate(typeof(LoginPage), args.Arguments))
{
throw new Exception("Failed to create initial page");
}
}
// Ensure the current window is active
Window.Current.Activate();
}
如果我尝试调试以查看发生了什么,它所做的只是从LayoutAwarePage和此行加载代码: private readonly ObservableCollection _colorSource = new ObservableCollection(); 然后它转到InitializeComponent,我得到AccessViolationException。
有没有人知道发生了什么,也许怎么解决这个问题?
尼古拉斯
答案 0 :(得分:1)
我所做的是创建一个基本页面并重新编写我的页面。现在它工作得很好。 不知道问题到底是什么。但这就是我解决它的方式。
答案 1 :(得分:0)
我遇到了完全相同的问题。创建一个新的页面并完成它我得到了同样的问题..所以我评论了XAML的一些内容,直到我确定了根本原因:
<Style TargetType="TextBox" x:Key="printableTextBox">
<Setter Property="BorderThickness" Value="{Binding IsPrinting, Converter={StaticResource printInputBoolToThicknessConverter}}"/>
</Style>
Turns out UWP XAML does not support Binding
a Style
's Setter.Value
。实际上在VS中,Setter
有一个蓝色波浪形的工具提示“灾难性的失败”!我觉得有点危言耸听......
所以我希望这可以帮助其他人AccessViolationException
在这种情况下完全无益。