アプリケーションに、datagridviewをホストするwinformホストがあります。すべてが正常に機能しますが、データがdatagridviewに読み込まれると、ウィンドウの不透明度が変化し、ウィンドウを物理的に移動するまでウィンドウは消えません。どうすれば直せばいいのか教えていただけますか?ありがとう、
サンプルコード:
windowsFormsHost1.Child = _MyDataGrid;
windowsFormsHost1.InvalidateVisual();
windowsFormsHost1.InvalidateArrange();
this.Height = 450;
windowsFormsHost1.Visibility = System.Windows.Visibility.Visible;
windowsFormsHost1.UpdateLayout();