2016-04-05 6 views
1

タブレットモードでは、ウィンドウをアクティブにするとフルサイズになりますが、私たちのソフトウェアは他のプログラムと実際に機能するユーティリティプログラムで、1/3から1/4幅。ウィンドウの幅や最後のアプリとの共有を制御できますか?Windows 10タブレットモードで1/3幅のウィンドウを強制

+0

MVVMまたはコードビハインド? – StepUp

+0

コードビハインドはいかがですか – tofutim

答えて

0

プロパティSystem.Windows.SystemParameters.PrimaryScreenWidthSystem.Windows.SystemParameters.PrimaryScreenHeightを使用してください。サイズはWidthHeightです(ピクセル単位)。

if (System.Windows.SystemParameters.PrimaryScreenWidth < 1500 && 
    System.Windows.SystemParameters.PrimaryScreenHeight < 800)//you should set your own parameters of your Window of Tablet 
{     
    Application.Current.MainWindow.Height = Application.Current.MainWindow.Height/3; 
    Application.Current.MainWindow.Width = Application.Current.MainWindow.Width/2; 
} 
+0

@tofutim質問は自由です。私の返事があなたに役立つと感じたら、私の返事を答えとしてマークして、将来の他の人の検索を簡単にすることができます。 http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-workをご覧ください。 – StepUp

関連する問題