Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GetAdocUI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QCD
Tools
GetAdocUI
Commits
bdd144bb
Commit
bdd144bb
authored
Oct 12, 2021
by
tsuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
・実行ファイル名をGetADocGUIに修正
・フォルダ表示を改行しないように修正
parent
04535f2d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
GetADoc.csproj
GetADoc/GetADoc.csproj
+1
-1
MainWindow.xaml
GetADoc/MainWindow.xaml
+2
-2
MainWindow.xaml.cs
GetADoc/MainWindow.xaml.cs
+2
-0
No files found.
GetADoc/GetADoc.csproj
View file @
bdd144bb
...
@@ -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>
GetADoc
GUI
</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>
...
...
GetADoc/MainWindow.xaml
View file @
bdd144bb
...
@@ -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"/>
...
...
GetADoc/MainWindow.xaml.cs
View file @
bdd144bb
...
@@ -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でフォルダ選択のダイアログを表示
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment