Silverlight for Windows Phone 7--Popup

在Windows Phone 7開發者我在不使用Progressbar的前提下又想告訴用戶程序正在運行,顯示一個進度對話框,這時我們就可以用Popup。

前臺

<Popup x:Name="ProgressPopup" Width="300" IsOpen="False" HorizontalAlignment="Center"
                   VerticalAlignment="Top" d:LayoutOverrides="Width, HorizontalMargin" Margin="89,203,91,0">
                <Border BorderThickness="10" BorderBrush="Black" Background="DarkGray" Padding="30,30">
                    <StackPanel>
                        <TextBlock MaxHeight="100" Foreground="White"  FontWeight="Bold"  FontSize="36" x:Name="txt" Text="1">
                            <TextBlock.Triggers>
                                <EventTrigger RoutedEvent="TextBlock.Loaded">
                                    <BeginStoryboard> <Storyboard>
                                        <DoubleAnimation   AutoReverse="True" Duration="0:0:1"
                                     From="1.0" RepeatBehavior="Forever"  Storyboard.TargetName="txt" Storyboard.TargetProperty="Opacity"   To="0.0"/> 
                                    </Storyboard>
                                    </BeginStoryboard>                            
                                </EventTrigger>                       
                            </TextBlock.Triggers>
                        </TextBlock>
                    </StackPanel>
                </Border>
            </Popup>

後臺

public partial class MainPage : PhoneApplicationPage
    {
        Storyboard _timer = new Storyboard();
      
        int i=0;
        public MainPage()
        {
            InitializeComponent();

            _timer.Duration = TimeSpan.FromMilliseconds(10);
            _timer.Completed += new EventHandler(_timer_Completed);
            _timer.Begin();
             i = Convert.ToInt32(txt.Text);
        }

        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            this.Dispatcher.BeginInvoke(new Action(() => ProgressPopup.IsOpen = true));
        }

        void _timer_Completed(object sender, EventArgs e)
        {
           
            if (i <= txt.MaxHeight)
            {
                i++;
                this.txt.Text = i.ToString();
                _timer.Begin();

                return;
            }

            this.Dispatcher.BeginInvoke(new Action(() => { ProgressPopup.IsOpen = false; }));
        }

    }

 

 

 

http://www.cnblogs.com/salam/archive/2010/12/27/1917919.html
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章