最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

WPF實(shí)現(xiàn)進(jìn)度條實(shí)時(shí)更新效果

 更新時(shí)間:2018年12月26日 17:23:01   作者:有個(gè)家伙喜歡代碼  
這篇文章主要為大家詳細(xì)介紹了WPF實(shí)現(xiàn)進(jìn)度條實(shí)時(shí)更新效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了WPF實(shí)現(xiàn)一個(gè)實(shí)時(shí)更新的進(jìn)度條,供大家參考,具體內(nèi)容如下

效果圖

xaml代碼

<Window x:Class="ProgressBar.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:ProgressBar"
    mc:Ignorable="d"
    Title="MainWindow" Height="250" Width="400">
  <Grid>
    <ProgressBar Name="progressBar" Minimum="1" Maximum="1000" Height="50"/>
    <Button Content="Done" VerticalAlignment="Bottom" HorizontalAlignment="Center" FontSize="20" Margin="10" Click="Button_Click"/>
  </Grid>
</Window>

后臺(tái)代碼

using System;
using System.Windows;
using System.Windows.Controls.Primitives;
using System.Windows.Threading;
 
namespace ProgressBar
{
  /// <summary>
  /// MainWindow.xaml 的交互邏輯
  /// </summary>
  public partial class MainWindow : Window
  {
    public MainWindow()
    {
      InitializeComponent();
    }
 
    private delegate void UpdateProgressBarDelegate(DependencyProperty dp, object value);
 
    private void Button_Click(object sender, RoutedEventArgs e)
    {
      UpdateProgressBarDelegate updateProgressBaDelegate = new UpdateProgressBarDelegate(progressBar.SetValue);
      for (int i = (int)progressBar.Minimum; i <= (int)progressBar.Maximum; i++)
      {
        Dispatcher.Invoke(updateProgressBaDelegate, DispatcherPriority.Background, new object[] { RangeBase.ValueProperty, Convert.ToDouble(i) });
      }
    }
  }
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。 

相關(guān)文章

最新評(píng)論

嘉义县| 庆阳市| 揭阳市| 廊坊市| 古田县| 洛扎县| 田东县| 隆昌县| 鄄城县| 曲阜市| 济源市| 滨州市| 开鲁县| 安仁县| 革吉县| 防城港市| 华坪县| 满洲里市| 辉南县| 淮滨县| 呼和浩特市| 伽师县| 云和县| 余干县| 兴山县| 长葛市| 海原县| 大荔县| 师宗县| 周至县| 泸水县| 蕉岭县| 施秉县| 台山市| 达孜县| 鱼台县| 奉贤区| 金华市| 股票| 高台县| 客服|