adjusted responsive ui
This commit is contained in:
parent
7fffd24719
commit
dfc72ed8c7
4 changed files with 17 additions and 10 deletions
|
@ -16,7 +16,7 @@ namespace WeeXnes.Core
|
|||
public static string encryptionKey = "8zf5#RdyQ]$4x4_";
|
||||
public static string AppDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "WeeXnes");
|
||||
public static string SettingsFileName = "settings.ini";
|
||||
public static string version = "3.6.4";
|
||||
public static string version = "3.6.6";
|
||||
public static bool info_isRpcRunning = false;
|
||||
public static bool info_RpcAutoStart;
|
||||
public static string apiUrl = "http://weexnes.com:5169/";
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
<ColumnDefinition Width="300"/>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<TextBlock Text="{Binding name}"
|
||||
Grid.Column="0"/>
|
||||
<TextBlock Text="{Binding value}"
|
||||
|
@ -61,29 +62,29 @@
|
|||
|
||||
</Grid>
|
||||
</StackPanel>
|
||||
<StackPanel Grid.Row="1" Orientation="Horizontal">
|
||||
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
|
||||
<TextBox Name="Textbox_Name"
|
||||
Height="30"
|
||||
Height="30"
|
||||
HorizontalAlignment="Left"
|
||||
Width="250"
|
||||
Style="{StaticResource MaterialTextBox}"
|
||||
Background="#1c1e23" Tag="Name"/>
|
||||
Background="#1c1e23" Tag="Name"/>
|
||||
<TextBox Name="Textbox_Value"
|
||||
Height="30"
|
||||
Height="30"
|
||||
HorizontalAlignment="Right"
|
||||
Width="250"
|
||||
Margin="15,0,0,0"
|
||||
Style="{StaticResource MaterialTextBox}"
|
||||
Background="#1c1e23" Tag="Value"/>
|
||||
Background="#1c1e23" Tag="Value"/>
|
||||
<Button Width="90"
|
||||
Height="30"
|
||||
Name="AddButton"
|
||||
Margin="15,0,0,0"
|
||||
Margin="15,0,0,0"
|
||||
Click="AddButton_Click"
|
||||
Content="Add"
|
||||
Background="#1c1e23"
|
||||
Style="{StaticResource UniversalMaterialButton}"
|
||||
/>
|
||||
/>
|
||||
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
|
|
|
@ -52,7 +52,13 @@
|
|||
<RowDefinition Height="75"/>
|
||||
<RowDefinition/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Image RenderOptions.BitmapScalingMode="HighQuality"
|
||||
Source="/Images/wicon.png" Grid.Row="0"
|
||||
HorizontalAlignment="Center" RenderTransformOrigin="0.5,0.5"
|
||||
Margin="5,0,0,0"
|
||||
Width="50"
|
||||
Name="HeaderIcon"
|
||||
/>
|
||||
|
||||
<Border Grid.Row="1" Width="50" Name="NavigationBorder"
|
||||
Margin="5,0,0,0">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<Version>3.6.5</Version>
|
||||
<Version>3.6.6</Version>
|
||||
<ProjectGuid>{4B33CEE7-C74D-43B9-B99A-8B273D5195BC}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>WeeXnes</RootNamespace>
|
||||
|
|
Loading…
Add table
Reference in a new issue