VerticalAlignment=Top HorizontalAlignment=Left : TextBlock « Windows Presentation Foundation « C# / C Sharp






VerticalAlignment=Top HorizontalAlignment=Left

VerticalAlignment=Top  HorizontalAlignment=Left
  

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300">
    <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>
</Window>

//File:Window.xaml.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WpfApplication1
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            MessageBox.Show("Please dont click this button again");
        }
    }
}

   
    
  








Related examples in the same category

1.TextBlock VerticalAlignmentTextBlock VerticalAlignment
2.Emboss TextEmboss Text
3.Engrave TextEngrave Text
4.TextBlock ScaleTransform ScaleXTextBlock ScaleTransform ScaleX
5.TextBlock ScaleTransform ScaleY and TransformGroupTextBlock ScaleTransform ScaleY and TransformGroup
6.Text Drop ShadowText Drop Shadow
7.TextBlock Opacity AnimationTextBlock Opacity Animation
8.Adding Hyperlink to TextBlockAdding Hyperlink to TextBlock
9.Spell Check a TextBox or RichTextBox Control in Real TimeSpell Check a TextBox or RichTextBox Control in Real Time
10.Animates the text block's colorAnimates the text block's color
11.Animates the text block's opacity(fading text)Animates the text block's opacity(fading text)
12.Animates the text block's widthAnimates the text block's width
13.TextEffect to animateTextEffect to animate
14.Animates the horizontal center of the RotateTransform applied to the TextEffect
15.Animates the position of the TextEffect
16.Set TextBlock.FontSize for Grid
17.Add TextBlock into a GridAdd TextBlock into a Grid
18.Intrinsic character direction in TextBlockIntrinsic character direction in TextBlock
19.Mixed character directions and TextBlockMixed character directions and TextBlock
20.FlowDirection of TextBlockFlowDirection of TextBlock
21.Use RenderTransform to transform a TextBlockUse RenderTransform to transform a TextBlock
22.Use LayoutTransform to transform a TextBlockUse LayoutTransform to transform a TextBlock
23.Set Margins for TextBlock in Grid ResourceSet Margins for TextBlock in Grid Resource
24.Set TextWrapping to True for TextBlockSet TextWrapping to True for TextBlock
25.Set ToolTip text for TextBlockSet ToolTip text for TextBlock
26.Set Text value for TextBlockSet Text value for TextBlock
27.Set Foreground color for TextBlockSet Foreground color for TextBlock
28.Add Border to TextBlockAdd Border to TextBlock
29.Empirical Tilted Text ShadowEmpirical Tilted Text Shadow
30.Fill the overline decoration with a linear gradient brush in C#Fill the overline decoration with a linear gradient brush in C#
31.Fill the baseline decoration with a linear gradient brush in C#Fill the baseline decoration with a linear gradient brush in C#
32.Fill the underline decoration with a solid color brush in C#Fill the underline decoration with a solid color brush in C#
33.Fill the strikethrough decoration with a solid color brush in C#Fill the strikethrough decoration with a solid color brush in C#
34.Put Rectangle into TextBlockPut Rectangle into TextBlock
35.Programmatically change the way in which TextBlock is trimmed when it exceeds the outer boundaries of its containing box.Programmatically change the way in which TextBlock is trimmed when it exceeds the outer boundaries of its containing box.
36.Effects of the enumerated values of TextWrapping.Effects of the enumerated values of TextWrapping.
37.Simple underline decorationSimple underline decoration
38.Use Run the mark underlink TextDecorationsUse Run the mark underlink TextDecorations