<UserControl x:Class="Sample.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480"> <Grid x:Name="LayoutRoot"> <TextBlock x:Name="TextMessage"/> <Button Click="StartButton_Click"/> </Grid> </UserControl>
Partial Public Class MainPage Inherits UserControl Public Sub New() InitializeComponent() End Sub Private Sub StartButton_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) TextMessage.Content="HELLO WORLD" End Sub End Class