У меня есть страница wpf, размещенная в окне.Но я получаю исключение Null, когда пытаюсь использовать это.Это работает, тогда я использую этот код в другом методе, но не в методах Алла, почему это так?пожалуйста, совет.
NewPage page = new NewPage ();
Window w = Window.GetWindow(this.Parent);
w.Content = page;
Редактировать:
вот полный код:
public HandOverListPage() {
InitializeComponent();
_settings = new Settings();
}
public void ShowCurrentInUseAssignment() {
_currentDoc = (App.Current as App).SelectedHandOverDoc;
var r = from item in (App.Current as App).SelectedHandOverDoc.Items
where item.Status != 20
select item;
if(r.Count() == 0) {
//Report assignment to QP with status finished
ReportAssignment();
HandOverPage page = new HandOverPage();
Window w = Window.GetWindow(this.Parent);
w.Content = page;
return;
} else {
ICollectionView view = CollectionViewSource.GetDefaultView((App.Current as App).SelectedHandOverDoc.Items);
view.SortDescriptions.Add(new SortDescription("Status", ListSortDirection.Ascending));
ListBoxAssignmentItems.ItemsSource = view;
}
TxtBlockCounter.Text = r.Count().ToString();
}
Ошибка:
{"Значение не может быть нулевым.\ r \ nИмя параметра: dependencyObject "}
Я получаю это при использовании непосредственного окна
?this.GetType()
{Name = "HandOverListPage" FullName = "QP_Truck.Pages.HandOverListPage"}
[System.RuntimeType]: {Name = "HandOverListPage" FullName = "QP_Truck.Pages.HandOverListPage"}
base {System.Reflection.MemberInfo}: {Name = "HandOverListPage" FullName = "QP_Truck.Pages.HandOverListPage"}
Assembly: {QP Truck, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null}
AssemblyQualifiedName: "QP_Truck.Pages.HandOverListPage, QP Truck, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
Attributes: Public | BeforeFieldInit
BaseType: {Name = "Page" FullName = "System.Windows.Controls.Page"}
ContainsGenericParameters: false
DeclaringMethod: 'this.GetType().DeclaringMethod' threw an exception of type 'System.InvalidOperationException'
DeclaringType: null
FullName: "QP_Truck.Pages.HandOverListPage"
GenericParameterAttributes: 'this.GetType().GenericParameterAttributes' threw an exception of type 'System.InvalidOperationException'
GenericParameterPosition: 'this.GetType().GenericParameterPosition' threw an exception of type 'System.InvalidOperationException'
GUID: {93eb30b9-a64e-3c6b-9182-0f93582d188d}
HasElementType: false
IsAbstract: false
IsAnsiClass: true
IsArray: false
IsAutoClass: false
IsAutoLayout: true
IsByRef: false
IsClass: true
IsCOMObject: false
IsContextful: false
IsEnum: false
IsExplicitLayout: false
IsGenericParameter: false
IsGenericType: false
IsGenericTypeDefinition: false
IsImport: false
IsInterface: false
IsLayoutSequential: false
IsMarshalByRef: false
IsNested: false
IsNestedAssembly: false
IsNestedFamANDAssem: false
IsNestedFamily: false
IsNestedFamORAssem: false
IsNestedPrivate: false
IsNestedPublic: false
IsNotPublic: false
IsPointer: false
IsPrimitive: false
IsPublic: true
IsSealed: false
IsSerializable: false
IsSpecialName: false
IsUnicodeClass: false
IsValueType: false
IsVisible: true
MemberType: TypeInfo
Module: {QP Truck.exe}
Namespace: "QP_Truck.Pages"
ReflectedType: null
StructLayoutAttribute: {System.Runtime.InteropServices.StructLayoutAttribute}
TypeHandle: {System.RuntimeTypeHandle}
TypeInitializer: null
UnderlyingSystemType: {Name = "HandOverListPage" FullName = "QP_Truck.Pages.HandOverListPage"}