Skip to content

Commit

Permalink
aggiunte dimensioni minime
Browse files Browse the repository at this point in the history
  • Loading branch information
Clouz committed May 24, 2017
1 parent 031ad05 commit 7e0606e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ExcelGui/NumeraFogli.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ExcelGui"
mc:Ignorable="d"
Title="Numera Fogli" Height="400" Width="400" Loaded="Window_Loaded">
Title="Numera Fogli" MinHeight="300" Height="400" MinWidth="260" Width="400" Loaded="Window_Loaded">
<Grid Margin="5,5,5,5">
<Grid.RowDefinitions >
<RowDefinition Height="35"/>
Expand All @@ -17,9 +17,9 @@
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="120" MaxWidth="160"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition MinWidth="30" Width="1*"/>
<ColumnDefinition MinWidth="80" MaxWidth="160"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition MinWidth="30" Width="1*"/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Grid.Row="0" Text="Selected Cell" TextAlignment="Left" VerticalAlignment="Center"/>
<TextBlock Grid.Column="0" Grid.Row="1" Text="From" TextAlignment="Left" VerticalAlignment="Center"/>
Expand Down

0 comments on commit 7e0606e

Please sign in to comment.