-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from guo40020/master
Beta3
- Loading branch information
Showing
12 changed files
with
304 additions
and
133 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<UserControl x:Class="dlgDragImport" | ||
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:mD="http://materialdesigninxaml.net/winfx/xaml/themes" | ||
xmlns:local="clr-namespace:WalkmanManager" | ||
mc:Ignorable="d" Height="211.481" Width="485.193" Background="White"> | ||
<Grid> | ||
<mD:ColorZone Mode="PrimaryMid" Height="35"> | ||
<Label Foreground="White" VerticalContentAlignment="Center" Margin="10,0,0,0">导入到曲库</Label> | ||
</mD:ColorZone> | ||
<Grid Margin="0,35,0,0"> | ||
<TextBlock x:Name="TextBlockPrompt" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="23,38,0,0">正在导入(0/0)</TextBlock> | ||
<ProgressBar x:Name="ProgressBar" Margin="32,82,29,0" VerticalAlignment="Top" Height="8"></ProgressBar> | ||
</Grid> | ||
</Grid> | ||
</UserControl> |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Public Class dlgDragImport | ||
Property Progress | ||
Get | ||
Return ProgressBar.Value | ||
End Get | ||
Set(value) | ||
ProgressBar.Value = value | ||
TextBlockPrompt.Text = "正在导入(" & value & "/" & ProgressBar.Maximum & ")" | ||
End Set | ||
End Property | ||
|
||
Property Max | ||
Get | ||
Return ProgressBar.Maximum | ||
End Get | ||
Set(value) | ||
ProgressBar.Maximum = value | ||
TextBlockPrompt.Text = "正在导入(" & ProgressBar.Value & "/" & value & ")" | ||
End Set | ||
End Property | ||
End Class |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.