Windows Phone 7 水平滾動的文本

來源:互聯網
上載者:User

有木有發現應用的標題長一點就顯示不全鳥,滾動一下就可以了。有兩種方法一種是使用ScrollViewer控制項,另外一種是使用TranslateTransform平移變換來實現。

一、ScrollViewer控制項直接設定HorizontalScrollBarVisibility="Auto"就可以水平滾了

 <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
<ScrollViewer Width="480"
HorizontalScrollBarVisibility="Auto"><TextBlock x:Name="PageTitle" Text="這個名字好像有點長" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</ScrollViewer>
</StackPanel>

二、使用TranslateTransform平移變換來實現,使用這種方法就不會產生ScrollViewer的那種滾動效果,就是你把文字撥到哪,它就定在哪。

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<StackPanel x:Name="ContentPanel2" Background="Black"
ManipulationDelta="ContentPanel2_ManipulationDelta" Margin="0,0,-941,447">
<TextBlock Text="這個也有點長,但是沒有慣性滾動的。" Foreground="White" FontSize="100" />
</StackPanel>
</Grid>
 public partial class MainPage : PhoneApplicationPage
{
//建立一個平移變換的對象
private TranslateTransform transform = new TranslateTransform();
public MainPage()
{
InitializeComponent();
//設定StackPanel的變換屬性為平移變換
ContentPanel2.RenderTransform = transform;

}

private void ContentPanel2_ManipulationDelta(object sender, ManipulationDeltaEventArgs e)
{
//X軸移動
transform.X +=e.DeltaManipulation.Translation.X;
}

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.