我使用 Windows Store-Kit 测试了我的 Windows Phone 8 应用程序,但它失败了。它说“高资源使用率”。我正在使用 MVVM 模式,这意味着我正在将视图中的元素与 ViewModel 属性绑定。
高使用率示例:我有一个 MainView,它有一个 ContentControl。ContentControl 的Content 是另一个View(我们称之为ChildView)。当我单击 ChildView 中的 TextBox 时,会弹出 InputScope(您可以在其中键入)并且 View 会上升,因此可以看到 TextBox。当 View 上升时(注意 TextBox 在 Pivot 中),它开始滞后。我不知道为什么,因为我只关注 TextBox 而 PivotItem 上升。我的问题是如何降低资源使用率?如果您需要任何东西,请写下来,我会在这里发布。
主页.xaml
<Grid>
<Grid x:Name="LayoutRoot" HorizontalAlignment="Left">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<ScrollViewer Name="MyScrollViewer" Height="Auto" HorizontalAlignment="Left" VerticalAlignment="Top" Width="Auto" HorizontalScrollBarVisibility="{Binding Horizontal}" VerticalScrollBarVisibility="{Binding Vertical}">
<!--ContentPanel - zusätzliche Inhalte hier platzieren-->
<StackPanel ScrollViewer.HorizontalScrollBarVisibility="Auto" Grid.Row="2" Opacity="50">
<ContentControl Content="{Binding MyContent}" Name="MyContentControl" IsTabStop="False" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch"/>
</StackPanel>
</ScrollViewer>
</Grid>
</Grid>
ChildView.xaml http://textuploader.com/?p=6&id=zMDoD
Store-Kit 结果(德语,但我认为很清楚)http://i.imagebanana.com/img/j6z24o9a/Unbenannt.png
这是视图的 ViewModel 中的属性的样子(在 Store-Kit 结果中显示)
private string _anlohnsteuer;
public string ANLohnsteuer
{
get { return _anlohnsteuer; }
set
{
_anlohnsteuer = value;
RaisePropertyChanged(() => ANLohnsteuer);
}
}