InterviewSolution
Saved Bookmarks
| 1. |
Give An Example Of Creating Button In Xaml ? |
|
Answer» In XAML, a BUTTON can be created as in the FOLLOWING example: Example: <GRID x:Name="LayoutRoot" Background="White"> <Button Width="60" HEIGHT="30">Click Here</Button> </Grid> In XAML, a button can be created as in the following example: Example: <Grid x:Name="LayoutRoot" Background="White"> <Button Width="60" Height="30">Click Here</Button> </Grid> |
|