forked from CopyPlusPlus/CopyPlusPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
67 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
<Window x:Class="CopyPlusPlus.Manual" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:local="clr-namespace:CopyPlusPlus" | ||
mc:Ignorable="d" | ||
Title="Manual" Height="355" Width="565"> | ||
Title="手动处理" Height="355" Width="565"> | ||
<Grid> | ||
<TextBox Margin="10,10,10,0" TextWrapping="Wrap" Text="将文本粘贴到这里" VerticalAlignment="Top" Height="263" FontFamily="Microsoft YaHei UI"/> | ||
<Button Content="Button" HorizontalAlignment="Left" Margin="45,294,0,0" VerticalAlignment="Top" Height="35" Width="100"/> | ||
<Button Content="Button" HorizontalAlignment="Left" Margin="213,294,0,0" VerticalAlignment="Top" Height="35" Width="100"/> | ||
|
||
<TextBox x:Name="TextBox" Margin="10,10,10,38" TextWrapping="Wrap" Text="将文本粘贴到这里" FontFamily="Microsoft YaHei UI" GotFocus="TextBox_GotFocus" AcceptsReturn="True" VerticalScrollBarVisibility="Auto" /> | ||
<Button Content="合并换行" Margin="20,0,0,7" VerticalAlignment="Bottom" Height="25" FontFamily="Microsoft YaHei UI" Click="MergeLineBtn_Click" HorizontalAlignment="Left" Width="58" /> | ||
<Button Content="合并空格" Margin="100,0,0,7" VerticalAlignment="Bottom" Height="25" FontFamily="Microsoft YaHei UI" Click="MergeSpacesBtn_Click" HorizontalAlignment="Left" Width="58" /> | ||
<Button Content="复制" Margin="180,0,0,7" VerticalAlignment="Bottom" Height="25" FontFamily="Microsoft YaHei UI" Click="CopyBtn_Click" HorizontalAlignment="Left" Width="58" /> | ||
</Grid> | ||
</Window> | ||
</Window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters