Differences

This shows you the differences between two versions of the page.

Link to this comparison view

swdev:dotnet:drop_down_button [2011/04/06 08:57]
smayr created
swdev:dotnet:drop_down_button [2011/04/06 08:57] (current)
smayr
Line 8: Line 8:
  
 XAML: XAML:
 +<code xml>
 <Window x:Class="TestDropdownButton.Window1" <Window x:Class="TestDropdownButton.Window1"
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
Line 31: Line 32:
     </StackPanel>     </StackPanel>
 </Window> </Window>
 +</code>
  
 Code Behind: Code Behind:
 +<code csharp>
 using System.Windows; using System.Windows;
 using System.Windows.Controls; using System.Windows.Controls;
Line 63: Line 66:
     }     }
 } }
 +</code>