Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

Predefined brush in Brushes Class

<Window x: Class="WpfApplication1.SolidColorBrushExample"   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"   Title="SolidColorBrush Example" Height="415" Width="270">   <Canvas Margin="5">     <StackPanel>       <TextBlock Margin="0,0,0,5">         Predefined Brush in the Brushes class:       </TextBlock>       <Rectangle x:Name="rect1" Width="100" Height="30"         Stroke="Blue" />     </StackPanel>   </Canvas> </Window> //File:Window.xaml.vb Imports System Imports System.Windows Imports System.Windows.Controls Imports System.Windows.Input Imports System.Windows.Media Imports System.Windows.Shapes Namespace WpfApplication1   Public Partial Class SolidColorBrushExample     Inherits Window     Public Sub New()       InitializeComponent()       Dim brush As New SolidColorBrush()       ' Predefined brush in Brushes Class:        brush = Brushes.Red       rect1.Fill = brush     End Sub   End Class End Namespace