fork download
  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://s...content-available-to-author-only...s.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfApp1"
  7. xmlns:b="http://schemas.microsoft.com/xaml/behaviors" x:Class="WpfApp1.MainWindow"
  8. mc:Ignorable="d"
  9. Title="ほげ" Width="450" Height="{Binding HogeWidth, Mode=TwoWay}" Loaded="Window_Loaded"> <!-- Window_Loadedは呼ばれる -->
  10.  
  11. <b:Interaction.Triggers>
  12. <b:EventTrigger EventName="Loaded">
  13. <b:CallMethodAction TargetObject="{Binding Mode=OneWay}" MethodName="HogeLoaded"/> <!-- HogeLoadedは呼ばれない -->
  14. </b:EventTrigger>
  15. </b:Interaction.Triggers>
  16.  
  17. <Window.DataContext>
  18. <local:HogeViewModel />
  19. </Window.DataContext>
  20.  
  21. <Grid/>
  22. </Window>
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty