방법: Loaded 이벤트 처리
이 예제에서는 FrameworkElement.Loaded 이벤트를 처리하는 방법과 이 이벤트를 처리하는 적절한 시나리오를 보여 줍니다. 페이지가 로드되면 처리기가 Button을 만듭니다.
예제
다음 예제에서는 Extensible Application Markup Language (XAML) 및 코드 숨김 파일을 함께 사용합니다.
<StackPanel
xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SDKSample.FELoaded"
Loaded="OnLoad"
Name="root"
>
</StackPanel>
Private Sub OnLoad(ByVal sender As Object, ByVal e As RoutedEventArgs)
Dim b1 As Button = New Button()
b1.Content = "New Button"
root.Children.Add(b1)
b1.Height = 25
b1.Width = 200
b1.HorizontalAlignment = HorizontalAlignment.Left
End Sub
void OnLoad(object sender, RoutedEventArgs e)
{
Button b1 = new Button();
b1.Content = "New Button";
root.Children.Add(b1);
b1.Height = 25;
b1.Width = 200;
b1.HorizontalAlignment = HorizontalAlignment.Left;
}