More cleaning
3ae04d20
Aaron Campf
committed
7 changed files
SysImageList.cs
/BExplorer/BetterExplorer/ArchiveView/SysImageList.cs+53
/BExplorer/BetterExplorer/ArchiveView/SysImageList.cs
Add comment 1 Plus  Public Class BindingEvaluator
Add comment 2 Plus   Inherits FrameworkElement
Add comment 3 Plus  
Add comment 4 Plus   #Region "Fields"
Add comment 5 Plus  
Add comment 6 Plus   Public Shared ReadOnly ValueProperty As DependencyProperty = DependencyProperty.Register("Value", GetType(String), GetType(BindingEvaluator), New FrameworkPropertyMetadata(String.Empty))
Add comment 7 Plus  
Add comment 8 Plus   Private _valueBinding As Binding
Add comment 9 Plus  
Add comment 10 Plus   #End Region 'Fields
Add comment 11 Plus  
Add comment 12 Plus   #Region "Constructors"
Add comment 13 Plus  
Add comment 14 Plus   Public Sub New(ByVal binding As Binding)
Add comment 15 Plus   ValueBinding = binding
Add comment 16 Plus   SetBinding(ValueProperty, binding)
Add comment 17 Plus   End Sub
Add comment 18 Plus  
Add comment 19 Plus   #End Region 'Constructors
Add comment 20 Plus  
Add comment 21 Plus   #Region "Properties"
Add comment 22 Plus  
Add comment 23 Plus   Public Property Value() As String
Add comment 24 Plus   Get
Add comment 25 Plus   Return GetValue(ValueProperty)
Add comment 26 Plus   End Get
Add comment 27 Plus  
Add comment 28 Plus   Set(ByVal value As String)
Add comment 29 Plus   SetValue(ValueProperty, value)
Add comment 30 Plus   End Set
Add comment 31 Plus   End Property
Add comment 32 Plus  
Add comment 33 Plus   Public Property ValueBinding() As Binding
Add comment 34 Plus   Get
Add comment 35 Plus   Return _valueBinding
Add comment 36 Plus   End Get
Add comment 37 Plus   Set(ByVal value As Binding)
Add comment 38 Plus   _valueBinding = value
Add comment 39 Plus   End Set
Add comment 40 Plus   End Property
Add comment 41 Plus  
Add comment 42 Plus   #End Region 'Properties
Add comment 43 Plus  
Add comment 44 Plus   #Region "Methods"
Add comment 45 Plus  
Add comment 46 Plus   Public Function Evaluate(ByVal dataItem As Object) As String
Add comment 47 Plus   Me.DataContext = dataItem
Add comment 48 Plus   Return Value
Add comment 49 Plus   End Function
Add comment 50 Plus  
Add comment 51 Plus   #End Region 'Methods
Add comment 52 Plus  
Add comment 53 Plus  End Class
BreadcrumbButton.cs
/BreadcrumbBar/BreadcrumbBar/BreadcrumbButton.cs+53
/BreadcrumbBar/BreadcrumbBar/BreadcrumbButton.cs
Add comment 1 Plus  Public Class BindingEvaluator
Add comment 2 Plus   Inherits FrameworkElement
Add comment 3 Plus  
Add comment 4 Plus   #Region "Fields"
Add comment 5 Plus  
Add comment 6 Plus   Public Shared ReadOnly ValueProperty As DependencyProperty = DependencyProperty.Register("Value", GetType(String), GetType(BindingEvaluator), New FrameworkPropertyMetadata(String.Empty))
Add comment 7 Plus  
Add comment 8 Plus   Private _valueBinding As Binding
Add comment 9 Plus  
Add comment 10 Plus   #End Region 'Fields
Add comment 11 Plus  
Add comment 12 Plus   #Region "Constructors"
Add comment 13 Plus  
Add comment 14 Plus   Public Sub New(ByVal binding As Binding)
Add comment 15 Plus   ValueBinding = binding
Add comment 16 Plus   SetBinding(ValueProperty, binding)
Add comment 17 Plus   End Sub
Add comment 18 Plus  
Add comment 19 Plus   #End Region 'Constructors
Add comment 20 Plus  
Add comment 21 Plus   #Region "Properties"
Add comment 22 Plus  
Add comment 23 Plus   Public Property Value() As String
Add comment 24 Plus   Get
Add comment 25 Plus   Return GetValue(ValueProperty)
Add comment 26 Plus   End Get
Add comment 27 Plus  
Add comment 28 Plus   Set(ByVal value As String)
Add comment 29 Plus   SetValue(ValueProperty, value)
Add comment 30 Plus   End Set
Add comment 31 Plus   End Property
Add comment 32 Plus  
Add comment 33 Plus   Public Property ValueBinding() As Binding
Add comment 34 Plus   Get
Add comment 35 Plus   Return _valueBinding
Add comment 36 Plus   End Get
Add comment 37 Plus   Set(ByVal value As Binding)
Add comment 38 Plus   _valueBinding = value
Add comment 39 Plus   End Set
Add comment 40 Plus   End Property
Add comment 41 Plus  
Add comment 42 Plus   #End Region 'Properties
Add comment 43 Plus  
Add comment 44 Plus   #Region "Methods"
Add comment 45 Plus  
Add comment 46 Plus   Public Function Evaluate(ByVal dataItem As Object) As String
Add comment 47 Plus   Me.DataContext = dataItem
Add comment 48 Plus   Return Value
Add comment 49 Plus   End Function
Add comment 50 Plus  
Add comment 51 Plus   #End Region 'Methods
Add comment 52 Plus  
Add comment 53 Plus  End Class
ShellItem.cs
/Shell/ShellItem.cs+53
/Shell/ShellItem.cs
Add comment 1 Plus  Public Class BindingEvaluator
Add comment 2 Plus   Inherits FrameworkElement
Add comment 3 Plus  
Add comment 4 Plus   #Region "Fields"
Add comment 5 Plus  
Add comment 6 Plus   Public Shared ReadOnly ValueProperty As DependencyProperty = DependencyProperty.Register("Value", GetType(String), GetType(BindingEvaluator), New FrameworkPropertyMetadata(String.Empty))
Add comment 7 Plus  
Add comment 8 Plus   Private _valueBinding As Binding
Add comment 9 Plus  
Add comment 10 Plus   #End Region 'Fields
Add comment 11 Plus  
Add comment 12 Plus   #Region "Constructors"
Add comment 13 Plus  
Add comment 14 Plus   Public Sub New(ByVal binding As Binding)
Add comment 15 Plus   ValueBinding = binding
Add comment 16 Plus   SetBinding(ValueProperty, binding)
Add comment 17 Plus   End Sub
Add comment 18 Plus  
Add comment 19 Plus   #End Region 'Constructors
Add comment 20 Plus  
Add comment 21 Plus   #Region "Properties"
Add comment 22 Plus  
Add comment 23 Plus   Public Property Value() As String
Add comment 24 Plus   Get
Add comment 25 Plus   Return GetValue(ValueProperty)
Add comment 26 Plus   End Get
Add comment 27 Plus  
Add comment 28 Plus   Set(ByVal value As String)
Add comment 29 Plus   SetValue(ValueProperty, value)
Add comment 30 Plus   End Set
Add comment 31 Plus   End Property
Add comment 32 Plus  
Add comment 33 Plus   Public Property ValueBinding() As Binding
Add comment 34 Plus   Get
Add comment 35 Plus   Return _valueBinding
Add comment 36 Plus   End Get
Add comment 37 Plus   Set(ByVal value As Binding)
Add comment 38 Plus   _valueBinding = value
Add comment 39 Plus   End Set
Add comment 40 Plus   End Property
Add comment 41 Plus  
Add comment 42 Plus   #End Region 'Properties
Add comment 43 Plus  
Add comment 44 Plus   #Region "Methods"
Add comment 45 Plus  
Add comment 46 Plus   Public Function Evaluate(ByVal dataItem As Object) As String
Add comment 47 Plus   Me.DataContext = dataItem
Add comment 48 Plus   Return Value
Add comment 49 Plus   End Function
Add comment 50 Plus  
Add comment 51 Plus   #End Region 'Methods
Add comment 52 Plus  
Add comment 53 Plus  End Class
ShellNotificationListener.cs
/Shell/ShellNotificationListener.cs+53
/Shell/ShellNotificationListener.cs
Add comment 1 Plus  Public Class BindingEvaluator
Add comment 2 Plus   Inherits FrameworkElement
Add comment 3 Plus  
Add comment 4 Plus   #Region "Fields"
Add comment 5 Plus  
Add comment 6 Plus   Public Shared ReadOnly ValueProperty As DependencyProperty = DependencyProperty.Register("Value", GetType(String), GetType(BindingEvaluator), New FrameworkPropertyMetadata(String.Empty))
Add comment 7 Plus  
Add comment 8 Plus   Private _valueBinding As Binding
Add comment 9 Plus  
Add comment 10 Plus   #End Region 'Fields
Add comment 11 Plus  
Add comment 12 Plus   #Region "Constructors"
Add comment 13 Plus  
Add comment 14 Plus   Public Sub New(ByVal binding As Binding)
Add comment 15 Plus   ValueBinding = binding
Add comment 16 Plus   SetBinding(ValueProperty, binding)
Add comment 17 Plus   End Sub
Add comment 18 Plus  
Add comment 19 Plus   #End Region 'Constructors
Add comment 20 Plus  
Add comment 21 Plus   #Region "Properties"
Add comment 22 Plus  
Add comment 23 Plus   Public Property Value() As String
Add comment 24 Plus   Get
Add comment 25 Plus   Return GetValue(ValueProperty)
Add comment 26 Plus   End Get
Add comment 27 Plus  
Add comment 28 Plus   Set(ByVal value As String)
Add comment 29 Plus   SetValue(ValueProperty, value)
Add comment 30 Plus   End Set
Add comment 31 Plus   End Property
Add comment 32 Plus  
Add comment 33 Plus   Public Property ValueBinding() As Binding
Add comment 34 Plus   Get
Add comment 35 Plus   Return _valueBinding
Add comment 36 Plus   End Get
Add comment 37 Plus   Set(ByVal value As Binding)
Add comment 38 Plus   _valueBinding = value
Add comment 39 Plus   End Set
Add comment 40 Plus   End Property
Add comment 41 Plus  
Add comment 42 Plus   #End Region 'Properties
Add comment 43 Plus  
Add comment 44 Plus   #Region "Methods"
Add comment 45 Plus  
Add comment 46 Plus   Public Function Evaluate(ByVal dataItem As Object) As String
Add comment 47 Plus   Me.DataContext = dataItem
Add comment 48 Plus   Return Value
Add comment 49 Plus   End Function
Add comment 50 Plus  
Add comment 51 Plus   #End Region 'Methods
Add comment 52 Plus  
Add comment 53 Plus  End Class
ShellViewEx.cs
/Shell/ShellViewEx.cs+53
/Shell/ShellViewEx.cs
Add comment 1 Plus  Public Class BindingEvaluator
Add comment 2 Plus   Inherits FrameworkElement
Add comment 3 Plus  
Add comment 4 Plus   #Region "Fields"
Add comment 5 Plus  
Add comment 6 Plus   Public Shared ReadOnly ValueProperty As DependencyProperty = DependencyProperty.Register("Value", GetType(String), GetType(BindingEvaluator), New FrameworkPropertyMetadata(String.Empty))
Add comment 7 Plus  
Add comment 8 Plus   Private _valueBinding As Binding
Add comment 9 Plus  
Add comment 10 Plus   #End Region 'Fields
Add comment 11 Plus  
Add comment 12 Plus   #Region "Constructors"
Add comment 13 Plus  
Add comment 14 Plus   Public Sub New(ByVal binding As Binding)
Add comment 15 Plus   ValueBinding = binding
Add comment 16 Plus   SetBinding(ValueProperty, binding)
Add comment 17 Plus   End Sub
Add comment 18 Plus  
Add comment 19 Plus   #End Region 'Constructors
Add comment 20 Plus  
Add comment 21 Plus   #Region "Properties"
Add comment 22 Plus  
Add comment 23 Plus   Public Property Value() As String
Add comment 24 Plus   Get
Add comment 25 Plus   Return GetValue(ValueProperty)
Add comment 26 Plus   End Get
Add comment 27 Plus  
Add comment 28 Plus   Set(ByVal value As String)
Add comment 29 Plus   SetValue(ValueProperty, value)
Add comment 30 Plus   End Set
Add comment 31 Plus   End Property
Add comment 32 Plus  
Add comment 33 Plus   Public Property ValueBinding() As Binding
Add comment 34 Plus   Get
Add comment 35 Plus   Return _valueBinding
Add comment 36 Plus   End Get
Add comment 37 Plus   Set(ByVal value As Binding)
Add comment 38 Plus   _valueBinding = value
Add comment 39 Plus   End Set
Add comment 40 Plus   End Property
Add comment 41 Plus  
Add comment 42 Plus   #End Region 'Properties
Add comment 43 Plus  
Add comment 44 Plus   #Region "Methods"
Add comment 45 Plus  
Add comment 46 Plus   Public Function Evaluate(ByVal dataItem As Object) As String
Add comment 47 Plus   Me.DataContext = dataItem
Add comment 48 Plus   Return Value
Add comment 49 Plus   End Function
Add comment 50 Plus  
Add comment 51 Plus   #End Region 'Methods
Add comment 52 Plus  
Add comment 53 Plus  End Class
TabControl.cs
/TabControl/TabControl.cs+53
/TabControl/TabControl.cs
Add comment 1 Plus  Public Class BindingEvaluator
Add comment 2 Plus   Inherits FrameworkElement
Add comment 3 Plus  
Add comment 4 Plus   #Region "Fields"
Add comment 5 Plus  
Add comment 6 Plus   Public Shared ReadOnly ValueProperty As DependencyProperty = DependencyProperty.Register("Value", GetType(String), GetType(BindingEvaluator), New FrameworkPropertyMetadata(String.Empty))
Add comment 7 Plus  
Add comment 8 Plus   Private _valueBinding As Binding
Add comment 9 Plus  
Add comment 10 Plus   #End Region 'Fields
Add comment 11 Plus  
Add comment 12 Plus   #Region "Constructors"
Add comment 13 Plus  
Add comment 14 Plus   Public Sub New(ByVal binding As Binding)
Add comment 15 Plus   ValueBinding = binding
Add comment 16 Plus   SetBinding(ValueProperty, binding)
Add comment 17 Plus   End Sub
Add comment 18 Plus  
Add comment 19 Plus   #End Region 'Constructors
Add comment 20 Plus  
Add comment 21 Plus   #Region "Properties"
Add comment 22 Plus  
Add comment 23 Plus   Public Property Value() As String
Add comment 24 Plus   Get
Add comment 25 Plus   Return GetValue(ValueProperty)
Add comment 26 Plus   End Get
Add comment 27 Plus  
Add comment 28 Plus   Set(ByVal value As String)
Add comment 29 Plus   SetValue(ValueProperty, value)
Add comment 30 Plus   End Set
Add comment 31 Plus   End Property
Add comment 32 Plus  
Add comment 33 Plus   Public Property ValueBinding() As Binding
Add comment 34 Plus   Get
Add comment 35 Plus   Return _valueBinding
Add comment 36 Plus   End Get
Add comment 37 Plus   Set(ByVal value As Binding)
Add comment 38 Plus   _valueBinding = value
Add comment 39 Plus   End Set
Add comment 40 Plus   End Property
Add comment 41 Plus  
Add comment 42 Plus   #End Region 'Properties
Add comment 43 Plus  
Add comment 44 Plus   #Region "Methods"
Add comment 45 Plus  
Add comment 46 Plus   Public Function Evaluate(ByVal dataItem As Object) As String
Add comment 47 Plus   Me.DataContext = dataItem
Add comment 48 Plus   Return Value
Add comment 49 Plus   End Function
Add comment 50 Plus  
Add comment 51 Plus   #End Region 'Methods
Add comment 52 Plus  
Add comment 53 Plus  End Class
TabEventArgs.cs
/TabControl/TabEventArgs.cs+53
/TabControl/TabEventArgs.cs
Add comment 1 Plus  Public Class BindingEvaluator
Add comment 2 Plus   Inherits FrameworkElement
Add comment 3 Plus  
Add comment 4 Plus   #Region "Fields"
Add comment 5 Plus  
Add comment 6 Plus   Public Shared ReadOnly ValueProperty As DependencyProperty = DependencyProperty.Register("Value", GetType(String), GetType(BindingEvaluator), New FrameworkPropertyMetadata(String.Empty))
Add comment 7 Plus  
Add comment 8 Plus   Private _valueBinding As Binding
Add comment 9 Plus  
Add comment 10 Plus   #End Region 'Fields
Add comment 11 Plus  
Add comment 12 Plus   #Region "Constructors"
Add comment 13 Plus  
Add comment 14 Plus   Public Sub New(ByVal binding As Binding)
Add comment 15 Plus   ValueBinding = binding
Add comment 16 Plus   SetBinding(ValueProperty, binding)
Add comment 17 Plus   End Sub
Add comment 18 Plus  
Add comment 19 Plus   #End Region 'Constructors
Add comment 20 Plus  
Add comment 21 Plus   #Region "Properties"
Add comment 22 Plus  
Add comment 23 Plus   Public Property Value() As String
Add comment 24 Plus   Get
Add comment 25 Plus   Return GetValue(ValueProperty)
Add comment 26 Plus   End Get
Add comment 27 Plus  
Add comment 28 Plus   Set(ByVal value As String)
Add comment 29 Plus   SetValue(ValueProperty, value)
Add comment 30 Plus   End Set
Add comment 31 Plus   End Property
Add comment 32 Plus  
Add comment 33 Plus   Public Property ValueBinding() As Binding
Add comment 34 Plus   Get
Add comment 35 Plus   Return _valueBinding
Add comment 36 Plus   End Get
Add comment 37 Plus   Set(ByVal value As Binding)
Add comment 38 Plus   _valueBinding = value
Add comment 39 Plus   End Set
Add comment 40 Plus   End Property
Add comment 41 Plus  
Add comment 42 Plus   #End Region 'Properties
Add comment 43 Plus  
Add comment 44 Plus   #Region "Methods"
Add comment 45 Plus  
Add comment 46 Plus   Public Function Evaluate(ByVal dataItem As Object) As String
Add comment 47 Plus   Me.DataContext = dataItem
Add comment 48 Plus   Return Value
Add comment 49 Plus   End Function
Add comment 50 Plus  
Add comment 51 Plus   #End Region 'Methods
Add comment 52 Plus  
Add comment 53 Plus  End Class