'Declaration Public Sub Load( _ ByVal pathName As String _ )
'Declaration
Public Sub Load( _ ByVal pathName As String _ )
'Usage Dim instance As Theme Dim pathName As String instance.Load(pathName)
'Usage
Dim instance As Theme Dim pathName As String instance.Load(pathName)
public void Load( string pathName )
class Program { private Theme theme; public Theme ApplicationTheme { set{theme = value;} } public void LoadTheme() { if(theme != null) { theme.Load("C:\\..");//path of the new theme. } } }
Theme Class Theme Members