Advertisement
Guest User

Untitled

a guest
Jan 27th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.76 KB | None | 0 0
  1. <Window xmlns="https://github.com/avaloniaui"
  2.        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3.        Title="HeatExchangerGUI">
  4.     <Grid >
  5.         <Grid.ColumnDefinitions>
  6.             <ColumnDefinition Width="*"></ColumnDefinition>
  7.             <ColumnDefinition Width="Auto"></ColumnDefinition>
  8.         </Grid.ColumnDefinitions>
  9.         <Grid.RowDefinitions>
  10.             <RowDefinition Height="Auto"></RowDefinition>
  11.             <RowDefinition Height="Auto"></RowDefinition>
  12.         </Grid.RowDefinitions>
  13.         <ListBox Name="SubstanceList" Grid.Column="0" Grid.Row="0" HorizontalAlignment="Left" Items="{Binding Path=Substances, Mode=OneWay}">
  14.         </ListBox>
  15.         <StackPanel Grid.Row="0" Grid.Column="1">
  16.             <TextBlock>
  17.                 Критерий рейнолдса
  18.             </TextBlock>
  19.         </StackPanel>
  20.     </Grid>
  21. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement