Mega Code Archive
Use Resources Add to add static resouce from code
Gradient text
Of black, green, and gold
Makes an app pretty,
Makes an app bold.
//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Imports System.Windows.Shapes
Namespace WpfApplication1
Public Partial Class Window1
Inherits Window
Public Sub New()
Resources.Add("thicknessMargin", New Thickness(24, 12, 24, 23))
InitializeComponent()
End Sub
End Class
End Namespace