当我设置Window.name = "window name here"
时,我在Window.Show()
上获得了一个空引用异常。请参阅代码:
MyWindow = new Window {
ResizeMode = ResizeMode.NoResize,
WindowStyle = WindowStyle.None,
// set content and other properties here...
WindowStartupLocation = WindowStartupLocation.CenterScreen,
Name = "Customize Toolbar" // Omitting this allows code to run, leaving this causes null reference exception
};
为什么设置名称会导致此问题?设置Title
不会导致问题。
答案 0 :(得分:3)
尝试从名称中删除空格。使用像
这样的东西Name = "CustomizeToolbar"