This repository was archived by the owner on Sep 24, 2024. It is now read-only.
forked from caoyue/Wox.Plugin.Todos
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFilePathSetting.xaml
More file actions
16 lines (15 loc) · 1.41 KB
/
Copy pathFilePathSetting.xaml
File metadata and controls
16 lines (15 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<UserControl x:Class="Wox.Plugin.Todos.FilePathSetting"
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:local="clr-namespace:Wox.Plugin.Todos"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<TextBox x:Name="Directory" VerticalAlignment="Top" HorizontalAlignment="Left" Height="34" Margin="86,144,0,0" TextWrapping="Wrap" Text="TextBox" Width="278" IsEnabled="False" FontSize="16" VerticalContentAlignment="Center" MaxLines="1" />
<Button x:Name="ChooseButton" Content="Choose" HorizontalAlignment="Left" Margin="395,144,0,0" VerticalAlignment="Top" Width="71" Height="34" FontSize="16" Click="ChooseBtn_Click" RenderTransformOrigin="0.44,3.526"/>
<Label x:Name="Tips" Content="* You will need to restart Flow for this to take effect." HorizontalAlignment="Left" Margin="73,96,0,0" VerticalAlignment="Top" Width="410" FontSize="16"/>
<Label x:Name="Title" Content="Folder you choose will be used to store data file" HorizontalAlignment="Left" Margin="73,60,0,0" VerticalAlignment="Top" RenderTransformOrigin="0.5,0.5" FontSize="16" FontWeight="Bold"/>
</Grid>
</UserControl>