1.用vs建c#->windows->windows8-> blank app,里面居然木有common这个文件夹,没有各种控件的样式,这是怎么回事?windows8.1的
2.放了scrollViewer,控件超过了界面,显示了滑动条但不能滑动,而且这个界面在做的时候也不能随意的在界面之外的地方放控件,怎么办呢,是使用其他的方法还是有方法可以克服这个问题
<Page
x:Class="App2.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App2"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
>
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<ScrollViewer HorizontalScrollMode="Enabled" VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Visible" >
<Grid>
<TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="90,63,0,0" TextWrapping="Wrap" Text="就业指导仪" FontSize="70" VerticalAlignment="Top"/>
<TextBox x:Name="textBox" HorizontalAlignment="Left" Margin="400,582,-536,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="1502"/>
<GridView Width="800" Height="200" Margin="1005,214,-439,354" Background="DarkKhaki"></GridView>
</Grid>
</ScrollViewer>
</Grid>
</Page>