Commit bdd144bb authored by tsuji's avatar tsuji

・実行ファイル名をGetADocGUIに修正

・フォルダ表示を改行しないように修正
parent 04535f2d
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<ProjectGuid>{7A8DE09F-1468-4C6C-8607-8A03548AFBAC}</ProjectGuid> <ProjectGuid>{7A8DE09F-1468-4C6C-8607-8A03548AFBAC}</ProjectGuid>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<RootNamespace>GetADoc</RootNamespace> <RootNamespace>GetADoc</RootNamespace>
<AssemblyName>GetADoc</AssemblyName> <AssemblyName>GetADocGUI</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:GetADoc" xmlns:local="clr-namespace:GetADoc"
mc:Ignorable="d" mc:Ignorable="d"
Title="MainWindow" Height="250" Width="400"> Title="GetADoc" Height="250" Width="400">
<Grid> <Grid>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition Width="323*"/> <ColumnDefinition Width="323*"/>
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
AsciiDocの雛形を作成します AsciiDocの雛形を作成します
</Label> </Label>
<Label x:Name="label1" Content="作成先のフォルダ:" HorizontalAlignment="Left" Margin="10,40,0,0" VerticalAlignment="Top" Height="26"/> <Label x:Name="label1" Content="作成先のフォルダ:" HorizontalAlignment="Left" Margin="10,40,0,0" VerticalAlignment="Top" Height="26"/>
<TextBox x:Name="box1" Margin="10,67,0,68" Grid.RowSpan="2" AllowDrop="True" TextWrapping="Wrap" Drop="textBox_Drop" DragOver="textBox_PreviewDragOver" Panel.ZIndex="6" VerticalScrollBarVisibility="Auto"> <TextBox x:Name="box1" Margin="10,67,0,68" Grid.RowSpan="2" AllowDrop="True" Drop="textBox_Drop" DragOver="textBox_PreviewDragOver" Panel.ZIndex="6">
<フォルダ指定> <フォルダ指定>
</TextBox> </TextBox>
<Label x:Name="label2" Content="ドキュメント名:" Grid.Row="1" HorizontalAlignment="Left" Margin="10,24,0,0" VerticalAlignment="Top" Height="26" Width="92"/> <Label x:Name="label2" Content="ドキュメント名:" Grid.Row="1" HorizontalAlignment="Left" Margin="10,24,0,0" VerticalAlignment="Top" Height="26" Width="92"/>
......
...@@ -69,6 +69,8 @@ namespace GetADoc ...@@ -69,6 +69,8 @@ namespace GetADoc
} }
box1.Text = dropFiles[0]; box1.Text = dropFiles[0];
box1.Focus();
box1.Select(this.box1.Text.Length, 0);
} }
//参照ボタンClickでフォルダ選択のダイアログを表示 //参照ボタンClickでフォルダ選択のダイアログを表示
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment