Put Rectangle into TextBlock : Rectangle « Windows Presentation Foundation « VB.Net






Put Rectangle into TextBlock

Put Rectangle into TextBlock
      
<Page x:Class="WpfApplication1.Page1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Page1">
    <Grid>
        <Button Height="23" Margin="12,12,0,0" Name="button1" VerticalAlignment="Top" 
                HorizontalAlignment="Left" Width="76" Click="button1_Click">Button</Button>
        <TextBlock
            FontSize="16"
            Name="textBlock1"
            VerticalAlignment="Center"
            HorizontalAlignment="Center"
            xml:space="preserve"><Bold>Goodbye</Bold> world, 
             <Rectangle Width="20" Height="20" Fill="Blue"/> hello <Italic>Mars!</Italic></TextBlock>
    </Grid>
</Page>
//File:Window.xaml.vb
Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Text
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Imports System.Windows.Navigation
Imports System.Windows.Shapes

Namespace WpfApplication1
  Public Partial Class Page1
    Inherits Page
    Public Sub New()
      InitializeComponent()
    End Sub

    Private Sub button1_Click(sender As Object, e As RoutedEventArgs)
      MessageBox.Show("Please dont click this button again")
    End Sub
  End Class
End Namespace

   
    
    
    
    
    
  








Related examples in the same category

1.Use Rectangle, TextBlock and Button as the VisualBrushUse Rectangle, TextBlock and Button as the VisualBrush
2.Set Stroke, StrokeThickness for RectangleSet Stroke, StrokeThickness for Rectangle
3.Fill Rectangles with static ImageBrush resourcesFill Rectangles with static ImageBrush resources
4.Fill Rectangle with BisqueFill Rectangle with Bisque
5.Rotating rectanglesRotating rectangles
6.Rounded rectangleRounded rectangle
7.Rectangle with explicit size and positionRectangle with explicit size and position
8.Rectangles with size and position controlled by parentRectangles with size and position controlled by parent
9.Using ImageBrush to fill a RectangleUsing ImageBrush to fill a Rectangle
10.Draws a 100 by 50 rectangle with a solid blue fillDraws a 100 by 50 rectangle with a solid blue fill
11.Draws a 100 by 50 rectangle with a solid blue fill, a black outline, and rounded cornersDraws a 100 by 50 rectangle with a solid blue fill, a black outline, and rounded corners
12.Rectangle StrokeThicknessRectangle StrokeThickness
13.Rectangle.StrokeRectangle.Stroke
14.Use Customized LinearGradientBrush to paint a RectangleUse Customized LinearGradientBrush to paint a Rectangle
15.Set RadiusX and RadiuxY for RectangleSet RadiusX and RadiuxY for Rectangle
16.Fill Rectangle with LinearGradientBrush static resourceFill Rectangle with LinearGradientBrush static resource
17.Using a DrawingBrush resource to draw RectangleUsing a DrawingBrush resource to draw Rectangle
18.A rectangle with a linear fillA rectangle with a linear fill
19.A large rectangle built using an image brushA large rectangle built using an image brush
20.Fill Rectangle with ResourceFill Rectangle with Resource
21.Add Rectangle.Triggers collection into a styleAdd Rectangle.Triggers collection into a style
22.DashArray StrokeDashArray Stroke
23.Dash patternsDash patterns
24.Rectangle mouse down eventRectangle mouse down event
25.Rectangle mouse down previewRectangle mouse down preview
26.Change MaxHeightChange MaxHeight