使用什么屏幕尺寸?
What screen size to use?
因此,我正在使用 C# WPF 开发平板电脑应用程序。我没有测试,但客户告诉我屏幕有 10-17 英寸大。
我想知道用什么屏幕尺寸来测试我的应用程序。
我正在使用网格进行布局,但是当我说例如
GridRow1.height=2*
GridRow2.height=3*
它在全屏和较小 window 尺寸下看起来不一样。
根据我的经验,屏幕分辨率是影响可用性的一个重要因素。
解决方法请看这里:
- resize-wpf-window-and-contents-depening-on-screen-resolution
TL;DR
<Window x:Class="YourApplication.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="YourApplication"
Height="{Binding SystemParameters.PrimaryScreenHeight}"
Width="{Binding SystemParameters.PrimaryScreenWidth}">
因此,我正在使用 C# WPF 开发平板电脑应用程序。我没有测试,但客户告诉我屏幕有 10-17 英寸大。
我想知道用什么屏幕尺寸来测试我的应用程序。 我正在使用网格进行布局,但是当我说例如 GridRow1.height=2* GridRow2.height=3* 它在全屏和较小 window 尺寸下看起来不一样。
根据我的经验,屏幕分辨率是影响可用性的一个重要因素。
解决方法请看这里:
- resize-wpf-window-and-contents-depening-on-screen-resolution
TL;DR
<Window x:Class="YourApplication.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="YourApplication"
Height="{Binding SystemParameters.PrimaryScreenHeight}"
Width="{Binding SystemParameters.PrimaryScreenWidth}">