1

我有一个图像滚动视图,我从远程服务器导入图像但我想自动滚动图像,帮助我如何自动滚动图像

我用于图像滚动视图的 xaml 代码

 <ScrollViewer x:Name="ImgScrollViewer" 
               ScrollViewer.HorizontalScrollBarVisibility="Auto"
               VerticalScrollBarVisibility="Auto" >
     <StackPanel Orientation="Horizontal" x:Name="ImagesSP"
                 ScrollViewer.ManipulationMode="Control"  
                 ScrollViewer.HorizontalScrollBarVisibility="Visible" 
                 ScrollViewer.VerticalScrollBarVisibility="Auto"
                 Height="124" Width="3690"
                 Loaded="ImagesSP_Loaded_1"   >
         <!--<StackPanel.RenderTransform>
                 <TranslateTransform Y="550"/>
             </StackPanel.RenderTransform-->

         <Image Source="http://technomindtech.com/1tele-pixel.com/ad/logo_banner.jpg"   Width="500" Height="45" Stretch="Fill" VerticalAlignment="Top" />
         <Image Source="http://technomindtech.com/1tele-pixel.com/ad/images.jpeg"   Width="500" Height="45" Stretch="Fill" VerticalAlignment="Top" />
         <Image Source="http://technomindtech.com/1tele-pixel.com/ad/banner.jpg" Width="500" Height="45" Stretch="Fill" VerticalAlignment="Top" />
         <Image Source="http://technomindtech.com/1tele-pixel.com/ad/images.jpeg" Width="500" Height="45" Stretch="Fill" VerticalAlignment="Top"  />
         <Image Source="Images\MediumGray.png" Width="480" Height="400" Stretch="Fill" />
     </StackPanel>
 </ScrollViewer>

我的cs代码

namespace BogheApp
{
    public partial class MainPage : BasePage
    {
        public MainPage()
        {
            InitializeComponent();
        }

        private void ImagesSP_Loaded_1(object sender, RoutedEventArgs e)
        {

        }
    }
}
4

1 回答 1

1

您需要计算要滚动到的偏移量,然后使用ScrollToVerticalOffset(your_offset_value)方法。现在如何计算偏移量取决于您想要达到的目标,因此需要更多细节来回答这个问题。

于 2013-07-02T12:16:53.697 回答