Share via


SimpleProgressBar

이 페이지는 WPF 프로젝트에만 적용됨

The progress bar is a simple control that an application can use to visually indicate the progress of a lengthy operation. By default, the progress bar window is filled from left to right, as the operation progresses. The control has a range and a current position. The SimpleProgressBar in Blend for Visual Studio 2012 only supports a horizontally orientated progress bar.

The artboard view of a SimpleProgressBar control after setting the Value property to 10

JJ170166.bd9d739a-60b1-4567-a583-499ae276e536(ko-kr,VS.110).png

Breaking down the control template

The SimpleProgressBar control template consists of the following items:

  • A Grid layout panel, which is used to hold the multiple child objects within the progress bar. The Grid is also used because it makes it easier for an application user interface (UI) designer to add more objects to the template.

  • A Border element named PART_Track, which is used to represent the bar area to be filled.

  • A Border element named PART_Indicator, which is used to represent the bar area that has already been filled.

    주의 정보주의

    Do not rename any object whose name begins with "PART_" because these objects are referred to from the code that implements the control.

Property triggers used

The SimpleProgressBar control template does not use triggers. All control behavior is implemented in code.

Brushes used

The following brush resources in the SimpleStyles.xaml resource dictionary are used by the SimpleProgressBar template:

  • The Background property of the PART_Track object is set by using the PressedBrush.

  • The BorderBrush property of the PART_Track object is set by using the SolidBorderBrush.

  • The Background property of the PART_Indicator object is set by using the MouseOverBrush.

  • The BorderBrush property of the PART_Indicator object is set by using the NormalBorderBrush.

Best practices and design guidelines

  • In general, use a Grid control as the root of your template if you expect a designer to add further visual elements to your control. Blend looks for a layout panel like the Grid control and makes it active by default so that new objects that are added to the artboard end up as child objects of the layout panel.

  • If you want, you can add triggers to the SimpleProgressBar template, or modify the PART_Indicator object to make the bar look more interesting.

  • For information about how to hook up a progress bar to the progress of an operation, see the documentation about the ProgressBar Overview on MSDN.

참고 항목

작업

Try it: Customize the progress indicator of a SimpleProgressBar style