26 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Window x:Class="EuroToDollarConverter.MainWindow"
 | |
|         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 | |
|         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 | |
|         Title="Euro-Umrechner" Height="300" Width="400">
 | |
|     <Grid VerticalAlignment="Center">
 | |
|         <Grid.RowDefinitions>
 | |
|             <RowDefinition Height="Auto"/>
 | |
|             <RowDefinition Height="Auto"/>
 | |
|             <RowDefinition Height="Auto"/>
 | |
|             <RowDefinition Height="Auto"/>
 | |
|         </Grid.RowDefinitions>
 | |
|         <TextBox Name="euroBox" Width="300" Height="40" Margin="10" FontSize="16" Grid.Row="0"
 | |
|                  VerticalContentAlignment="Center" HorizontalContentAlignment="Center" />
 | |
|         <ComboBox Name="currencyBox" Width="300" Height="40" Margin="10" FontSize="16" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center"
 | |
|                   HorizontalContentAlignment="Center" VerticalContentAlignment="Center">
 | |
|             <ComboBoxItem Content="Dollar $"/>
 | |
|             <ComboBoxItem Content="Pfund £" />
 | |
|             <ComboBoxItem Content="Yen ¥"/>
 | |
|             <ComboBoxItem Content="Lira ₺"/>
 | |
|             <ComboBoxItem Content="Dirham د. إ "/>
 | |
|         </ComboBox>
 | |
|         <Button Content="Umrechnen" Width="300" Height="40" Margin="10" FontSize="16" Grid.Row="2" Click="Convert_Click"/>
 | |
|         <TextBox Name="dollarBox" Width="300" Height="40" Margin="10" FontSize="16" Grid.Row="3" IsReadOnly="True"
 | |
|                  VerticalContentAlignment="Center" HorizontalContentAlignment="Center"/>
 | |
|     </Grid>
 | |
| </Window> |