[This is preliminary documentation and is subject to change.]

Implements user interface for ProgressMonitor

Namespace: Tools.WindowsT.WPF.DialogsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
[TemplatePartAttribute(Name = "PART_ProgressInfo", Type = typeof(TextBlock))]
[TemplatePartAttribute(Name = "PART_Cancel", Type = typeof(Button))]
[TemplatePartAttribute(Name = "PART_Info", Type = typeof(TextBlock))]
[TemplatePartAttribute(Name = "PART_ProgressBar", Type = typeof(ProgressBar))]
[TemplatePartAttribute(Name = "PART_MainInfo", Type = typeof(TextBlock))]
public class ProgressMonitorImplementationControl : Control
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _
<TemplatePartAttribute(Name := "PART_ProgressInfo", Type := GetType(TextBlock))> _
<TemplatePartAttribute(Name := "PART_Cancel", Type := GetType(Button))> _
<TemplatePartAttribute(Name := "PART_Info", Type := GetType(TextBlock))> _
<TemplatePartAttribute(Name := "PART_ProgressBar", Type := GetType(ProgressBar))> _
<TemplatePartAttribute(Name := "PART_MainInfo", Type := GetType(TextBlock))> _
Public Class ProgressMonitorImplementationControl _
	Inherits Control
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)]
[TemplatePartAttribute(Name = L"PART_ProgressInfo", Type = typeof(TextBlock))]
[TemplatePartAttribute(Name = L"PART_Cancel", Type = typeof(Button))]
[TemplatePartAttribute(Name = L"PART_Info", Type = typeof(TextBlock))]
[TemplatePartAttribute(Name = L"PART_ProgressBar", Type = typeof(ProgressBar))]
[TemplatePartAttribute(Name = L"PART_MainInfo", Type = typeof(TextBlock))]
public ref class ProgressMonitorImplementationControl : public Control
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>]
[<TemplatePartAttribute(Name = "PART_ProgressInfo", Type = typeof(TextBlock))>]
[<TemplatePartAttribute(Name = "PART_Cancel", Type = typeof(Button))>]
[<TemplatePartAttribute(Name = "PART_Info", Type = typeof(TextBlock))>]
[<TemplatePartAttribute(Name = "PART_ProgressBar", Type = typeof(ProgressBar))>]
[<TemplatePartAttribute(Name = "PART_MainInfo", Type = typeof(TextBlock))>]
type ProgressMonitorImplementationControl =  
    class
        inherit Control
    end
JScript
public class ProgressMonitorImplementationControl extends Control

Remarks

You shuld not use this class/control directly unless you are styling it.

Inheritance Hierarchy

System..::..Object
  System.Windows.Threading..::..DispatcherObject
    System.Windows..::..DependencyObject
      System.Windows.Media..::..Visual
        System.Windows..::..UIElement
          System.Windows..::..FrameworkElement
            System.Windows.Controls..::..Control
              Tools.WindowsT.WPF.DialogsT..::..ProgressMonitorImplementationControl

See Also