画面全体を占めるように、子ウィンドウをアプリケーションのサイズに設定しようとしています。私は次のコードを使用しています:
Binding widthBinding = new Binding("Width");
widthBinding.Source = App.Current.Host.Content.ActualWidth;
this.SetBinding(ChildWindow.WidthProperty, widthBinding);
Binding heightBinding = new Binding("Height");
heightBinding.Source = App.Current.Host.Content.ActualHeight;
this.SetBinding(ChildWindow.HeightProperty, heightBinding);
this
子ウィンドウはどこにありますか。
ブラウザのサイズを変更するときに子ウィンドウも同様に変更されるようにバインドしています。ただし、子ウィンドウがサイズにバインドされていません。それはまだデフォルトのサイズのままです。私のバインディングは間違っていますか?