Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/WPF/VB/GridDemo.Wpf/Controls/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/WPF/VB/GridDemo.Wpf/Controls/CustomClasses.vb

Imports Microsoft.VisualBasic
Imports System
Imports System.Collections.Generic
Imports System.Reflection
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports DevExpress.Xpf.Editors
Imports DevExpress.Xpf.Grid
Imports DevExpress.Xpf.Utils
Imports DevExpress.Data.Filtering
Imports System.Collections.ObjectModel

Namespace GridDemo
	Public Class GridSummaryList
		Inherits List(Of GridSummaryItem)
	End Class
	Public Class NameTextControl
		Inherits Control
		Public Shared ReadOnly NameValueProperty As DependencyProperty = DependencyProperty.Register("NameValue", GetType(String), GetType(NameTextControl), New PropertyMetadata(Nothing))
		Public Shared ReadOnly TextValueProperty As DependencyProperty = DependencyProperty.Register("TextValue", GetType(String), GetType(NameTextControl), New PropertyMetadata(Nothing))
		Public Property NameValue() As String
			Get
				Return CStr(GetValue(NameValueProperty))
			End Get
			Set(ByVal value As String)
				SetValue(NameValueProperty, value)
			End Set
		End Property
		Public Property TextValue() As String
			Get
				Return CStr(GetValue(TextValueProperty))
			End Get
			Set(ByVal value As String)
				SetValue(TextValueProperty, value)
			End Set
		End Property
		Public Sub New()
			Me.SetDefaultStyleKey(GetType(NameTextControl))
		End Sub
	End Class
	Public Class HintControl
		Inherits ContentControl
		Public Sub New()
			Me.SetDefaultStyleKey(GetType(HintControl))
		End Sub
	End Class
End Namespace