Skip to main content

Posts

Showing posts with the label UWP Button

UWP - Show image and text on a Button

MainPage.xaml <Page x:Class="UniversalAppTutorials.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:UniversalAppTutorials" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"> <StackPanel x:Name="stack_panel1" Margin="100" Orientation="Vertical" > <Button x:Name="Button1" Click="Button1_Click" > <StackPanel> <Image Source="Assets/Alarm_black_72px.png" Height="72" Width="72" /> ...

UWP - Create Button programmatically

MainPage.xaml <Page x:Class="UniversalAppTutorials.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:UniversalAppTutorials" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"> <StackPanel x:Name="stack_panel1" Margin="100" Orientation="Vertical" > </StackPanel> </Page> MainPage.xaml.cs using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namespace UniversalAppTutorials { public sealed partial class MainPage : Page { public MainPage() { this.InitializeComponent(); // Create the controls CreateControls(); } ...

UWP - Button click event

MainPage.xaml <Page x:Class="UniversalAppTutorials.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:UniversalAppTutorials" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"> <RelativePanel BorderBrush="Black" BorderThickness="50" Background="AliceBlue"> <TextBlock x:Name="text_block_1" Text="Click the button." FontSize="30" RelativePanel.Above="button_1" RelativePanel.AlignHorizontalCenterWith="button_1" Margin="25" Foreground="BlueViolet" /> <Button ...