欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

WPF实现进度条实时更新效果

时间:2022-05-16 08:46:04|栏目:.NET代码|点击:

本文实例为大家分享了WPF实现一个实时更新的进度条,供大家参考,具体内容如下

效果图

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>

后台代码

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) });
      }
    }
  }
}

上一篇:.NET 中的 常量字段const应用介绍

栏    目:.NET代码

下一篇:System.Web中不存在类型或命名空间名称“Optimization”(是否缺少程序集引用?)

本文标题:WPF实现进度条实时更新效果

本文地址:http://www.codeinn.net/misctech/202037.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有