Fix more styling
This commit is contained in:
14
layout.xaml
14
layout.xaml
@@ -103,16 +103,16 @@
|
|||||||
|
|
||||||
<!-- Input Fields -->
|
<!-- Input Fields -->
|
||||||
<StackPanel Orientation="Vertical">
|
<StackPanel Orientation="Vertical">
|
||||||
<TextBlock Text="Company Name:" Margin="0,5,0,0" Foreground="#cccccc"/>
|
<TextBlock Name="CompanyLabel" Text="Company Name:" Margin="0,5,0,0" Foreground="#cccccc"/>
|
||||||
<TextBox Name="CompanyNameBox" Style="{StaticResource RoundedTextBox}"/>
|
<TextBox Name="CompanyNameBox" Style="{StaticResource RoundedTextBox}"/>
|
||||||
|
|
||||||
<TextBlock Text="Phone Number:" Margin="0,10,0,0" Foreground="#cccccc"/>
|
<TextBlock Name="PhoneLabel" Text="Phone Number:" Margin="0,10,0,0" Foreground="#cccccc"/>
|
||||||
<TextBox Name="PhoneBox" Style="{StaticResource RoundedTextBox}"/>
|
<TextBox Name="PhoneBox" Style="{StaticResource RoundedTextBox}"/>
|
||||||
|
|
||||||
<TextBlock Text="Website:" Margin="0,5,0,0" Foreground="#cccccc"/>
|
<TextBlock Name="WebsiteLabel" Text="Website:" Margin="0,5,0,0" Foreground="#cccccc"/>
|
||||||
<TextBox Name="WebsiteBox" Style="{StaticResource RoundedTextBox}"/>
|
<TextBox Name="WebsiteBox" Style="{StaticResource RoundedTextBox}"/>
|
||||||
|
|
||||||
<TextBlock Text="Street Address / Country:" Margin="0,5,0,0" Foreground="#cccccc"/>
|
<TextBlock Name="StreetLabel" Text="Street Address:" Margin="0,5,0,0" Foreground="#cccccc"/>
|
||||||
<Grid Margin="0,0,0,0">
|
<Grid Margin="0,0,0,0">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="2*" />
|
<ColumnDefinition Width="2*" />
|
||||||
@@ -122,7 +122,7 @@
|
|||||||
<TextBox Name="CountryBox" Style="{StaticResource RoundedTextBox}" Grid.Column="1"/>
|
<TextBox Name="CountryBox" Style="{StaticResource RoundedTextBox}" Grid.Column="1"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<TextBlock Text="City / Province / Postal Code:" Margin="0,5,0,0" Foreground="#cccccc"/>
|
<TextBlock Name="CityLabel" Text="City:" Margin="0,5,0,0" Foreground="#cccccc"/>
|
||||||
<Grid Margin="0,0,0,0">
|
<Grid Margin="0,0,0,0">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="*" />
|
<ColumnDefinition Width="*" />
|
||||||
@@ -134,6 +134,10 @@
|
|||||||
<TextBox Name="PostalCodeBox" Style="{StaticResource RoundedTextBox}" Grid.Column="2"/>
|
<TextBox Name="PostalCodeBox" Style="{StaticResource RoundedTextBox}" Grid.Column="2"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
|
<TextBlock Name="ProvinceLabel" Text="Province/State:" Visibility="Collapsed"/>
|
||||||
|
<TextBlock Name="PostalLabel" Text="Postal Code:" Visibility="Collapsed"/>
|
||||||
|
<TextBlock Name="CountryLabel" Text="Country:" Visibility="Collapsed"/>
|
||||||
|
|
||||||
<!-- Tools -->
|
<!-- Tools -->
|
||||||
<CheckBox Name="SelectAllBox" Content="Select All Tools" Margin="0,15,0,0" FontWeight="Bold" Foreground="White" Style="{StaticResource ModernCheckBox}"/>
|
<CheckBox Name="SelectAllBox" Content="Select All Tools" Margin="0,15,0,0" FontWeight="Bold" Foreground="White" Style="{StaticResource ModernCheckBox}"/>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user