wpf - custom progress bar control

First add a progress bar to the custom control.

<Grid>
        <StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
            <TextBlock Text="{Binding Path=ProgressInfo}"></TextBlock>
            <ProgressBar Minimum="0" Maximum="100" Value="{Binding Path=ProgressValue}" Width="200" Height="10"></ProgressBar>
            <Button Click="cancle_Click" Height="20" Margin="10">Cancle</Button>
        </StackPanel>
    </Grid>

Then add the click routing event in the background, and release the event in cancel_Click.

public partial class ProgressBarControl : UserControl
    {
        public ProgressBarControl()
        {
            InitializeComponent();
        }

        public static readonly RoutedEvent CancleClickEvent =
            EventManager.RegisterRoutedEvent("CancleClick", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ProgressBarControl));

        public event RoutedEventHandler CancleClick
        {
            add
            {
                this.AddHandler(CancleClickEvent, value);
            }

            remove
            {
                this.RemoveHandler(CancleClickEvent, value);
            }
        }

        private void cancle_Click(object sender, RoutedEventArgs e)
        {
            RoutedEventArgs args = new RoutedEventArgs(CancleClickEvent, this);
            this.RaiseEvent(args);
        }
    }

Then define a class to store the progress bar data.

public class ProgressBarModel : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;

        private void NotifyPropertyChanged(String info)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(info));
            }
        }

        private int progressValue;

        public int ProgressValue
        {
            get
            {
                return progressValue;
            }

            set
            {
                progressValue = value; NotifyPropertyChanged("ProgressValue");
            }
        }
        private string progressInfo;

        public string ProgressInfo
        {
            get
            {
                return progressInfo;
            }

            set
            {
                progressInfo = value; NotifyPropertyChanged("ProgressInfo");
            }
        }       
    }

Then use this custom progress bar control in the main window.

<Window x:Class="事件Test0402002.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:事件Test0402002"
        xmlns:lib="clr-namespace:事件Test0402002.CommonControls"
        mc:Ignorable="d" Loaded="window_Loaded"
        Title="MainWindow" Height="80" Width="300">
    <Grid>
        <lib:ProgressBarControl CancleClick="cancle_Click"></lib:ProgressBarControl>
    </Grid>
</Window>

Finally, the method of writing progress bar changes in the background.

public partial class MainWindow : Window
    {
        CommonControls.ProgressBarModel _model;
        public MainWindow()
        {
            InitializeComponent();
            CommonControls.ProgressBarModel model = new CommonControls.ProgressBarModel();
            _model = model;
            this.DataContext = _model;
        }

        private void cancle_Click(object sender, RoutedEventArgs e)
        {
            this.Close();
        }

        private void window_Loaded(object sender, RoutedEventArgs e)
        {
            Thread thread = new Thread(() => {
                for(int i=0;i<101;i++)
                {
                    _model.ProgressValue = i;
                    _model.ProgressInfo = i.ToString() + "%";
                    Thread.Sleep(50);
                }
            });
            thread.Start();
        }
    }

final result:


The difficulty here is to add a routed event to the custom control, and then the progress bar runs in a new thread.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325852803&siteId=291194637