mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
|
<UserControl x:Class="RainmeterStudio.Editor.ProjectEditor.ProjectEditorUI"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:r="clr-namespace:RainmeterStudio.Resources"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="300" d:DesignWidth="300">
|
||
|
|
||
|
<ScrollViewer VerticalScrollBarVisibility="Auto"
|
||
|
HorizontalScrollBarVisibility="Disabled">
|
||
|
<Grid>
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="Auto" />
|
||
|
<ColumnDefinition />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="Auto" />
|
||
|
<RowDefinition Height="Auto" />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<TextBlock Grid.Row="0" Grid.Column="0">Name:</TextBlock>
|
||
|
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding Name, Mode=TwoWay}" />
|
||
|
|
||
|
<TextBlock Grid.Row="1" Grid.Column="0">Author:</TextBlock>
|
||
|
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding Author, Mode=TwoWay}" />
|
||
|
|
||
|
</Grid>
|
||
|
</ScrollViewer>
|
||
|
</UserControl>
|