Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

Mixing graphics with Control Elements

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"       HorizontalAlignment="Center" VerticalAlignment="Center" Width="340">     <DockPanel>       <Ellipse DockPanel.Dock="Left" Fill="Green" Width="100" />       <Button DockPanel.Dock="Left">Foo</Button>       <StackPanel DockPanel.Dock="Top" Orientation="Horizontal">         <TextBlock Text="Mix text, " />         <Ellipse Fill="Blue" Width="40" />         <TextBlock Text=" and " />         <Button>Controls</Button>       </StackPanel>       <TextBlock FontSize="24" TextWrapping="Wrap">         And of course you can put graphics into         your text: <Ellipse Fill="Cyan" Width="50" Height="20" />       </TextBlock>     </DockPanel> </Page>