WPF - 我想把程式也寫在XAML Code裡面可以嗎

要把Code寫在XAML裡面也是可以的,不過不建議就是了(這樣沒有自動提示也很難寫吧);做法大致會像下面這樣

這篇主要是給自己備忘的 ~

要把Code寫在XAML裡面也是可以的,不過不建議就是了(這樣沒有自動提示也很難寫吧);做法大致會像下面這樣

<Window    
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"   
    x:Class="Window1"    Title="Window1" Height="346" Width="469" Name="Window1">
 
    <Button Name="button1" Click="Clicked">Click Me!</Button>
    <x:Code>
        <![CDATA[
     Sub Clicked(byval sender as object,byval e as RoutedEventArgs)
        button1.Content = "Hello World"
     End Sub
        ]]>
    </x:Code>
</Window>