Public · Protected · Private
using wpf controls samples
Type: Public  |  Created: 2012-06-18  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  • Button <Button Margin="3">Text button</Button> Button with content. <Button Margin="0"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="*" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <Image Source="smile.jpg" Grid.Column="0" Stretch="None" /> <Image Source="smile.jpg" Grid.Column="1" Stretch="None" /> <Polygon Points="100,25 125,0 200,25 125,50" Fill="Blue" Grid.ColumnSpan="3" /> <Polygon Points="100,25 75,0 0,25 75,50" Fill="Red" Grid.ColumnSpan="3" /> <Image Source="smile.jpg" Grid.Column="2" Stretch="None" /> </Grid> </Button>
    2012-06-18 02:24
  • Radio buton <GroupBox Margin="5"> <StackPanel> <RadioButton>Male</RadioButton> <RadioButton>Female</RadioButton> </StackPanel> </GroupBox> CheckBoxes <ListBox Name="lst" > <CheckBox Margin="3">India</CheckBox> <CheckBox Margin="3">USA</CheckBox> <CheckBox Margin="3">Australia</CheckBox> <CheckBox Margin="3">UK</CheckBox> </ListBox>
    2012-06-18 02:28
  • DatePicker <DatePicker Margin="3" DateValidationError="DP_DateValidationError" ></DatePicker> Embeded Font MyFont.ttf file is part of project (BuildAction Resource <Label Name="tst" FontSize="20" FontFamily="./#MyFont" >with my embedded font</Label>
    2012-06-18 02:32
  • TabControl <TabControl Margin="5"> <TabItem> <TabItem.Header> <StackPanel> <TextBlock Margin="3" >tab1header</TextBlock> <Image Source="smile.jpg" Stretch="None" /> </StackPanel> </TabItem.Header> <StackPanel Margin="3"> <Label>Tab1 content</Label> </StackPanel> </TabItem> <TabItem Header="Tab2header"></TabItem> </TabControl>
    2012-06-18 02:41
This blog is frozen. No new comments or edits allowed.