Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
al-develop committed Aug 24, 2017
1 parent 65171e3 commit 2b6dc3f
Show file tree
Hide file tree
Showing 23 changed files with 713 additions and 0 deletions.
22 changes: 22 additions & 0 deletions MusicTaggingLight.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MusicTaggingLight", "MusicTaggingLight\MusicTaggingLight.csproj", "{2124F611-DAF4-448C-93D4-2DF7DDFB03B5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2124F611-DAF4-448C-93D4-2DF7DDFB03B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2124F611-DAF4-448C-93D4-2DF7DDFB03B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2124F611-DAF4-448C-93D4-2DF7DDFB03B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2124F611-DAF4-448C-93D4-2DF7DDFB03B5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
38 changes: 38 additions & 0 deletions MusicTaggingLight/AboutUserControl.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<UserControl x:Class="MusicTaggingLight.AboutUserControl"
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:MusicTaggingLight"
mc:Ignorable="d"
d:DesignHeight="20"
d:DesignWidth="513">
<Grid>
<Image x:Name="image"
Source="pack://application:,,,/Resources/info16.png"
HorizontalAlignment="Left"
Height="16"
Margin="0,2,0,0"
VerticalAlignment="Top"
Width="16" />
<TextBlock x:Name="textBlock"
TextWrapping="Wrap"
Text="About: Icons by https://icons8.com/ | Programming by:"
VerticalAlignment="Top"
Margin="21,2,197,0"
Height="18" />
<Image x:Name="imgGithub"
HorizontalAlignment="Left"
Height="16"
Margin="321,2,0,0"
VerticalAlignment="Top" Source="pack://application:,,,/Resources/github.png"
Width="16" />
<TextBox x:Name="textBox"
Height="19"
Margin="342,1,0,0"
TextWrapping="Wrap" IsReadOnly="True"
Text="https://github.com/al-develop"
VerticalAlignment="Top"
HorizontalAlignment="Stretch"/>
</Grid>
</UserControl>
28 changes: 28 additions & 0 deletions MusicTaggingLight/AboutUserControl.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace MusicTaggingLight
{
/// <summary>
/// Interaction logic for AboutUserControl.xaml
/// </summary>
public partial class AboutUserControl : UserControl
{
public AboutUserControl()
{
InitializeComponent();
}
}
}
6 changes: 6 additions & 0 deletions MusicTaggingLight/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
9 changes: 9 additions & 0 deletions MusicTaggingLight/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Application x:Class="MusicTaggingLight.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MusicTaggingLight"
StartupUri="MainWindow.xaml">
<Application.Resources>

</Application.Resources>
</Application>
17 changes: 17 additions & 0 deletions MusicTaggingLight/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;

namespace MusicTaggingLight
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}
131 changes: 131 additions & 0 deletions MusicTaggingLight/MainWindow.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
<Window x:Class="MusicTaggingLight.MainWindow"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MusicTaggingLight"
mc:Ignorable="d"
Title="Music Tagging Light"
Height="350"
Width="540">
<Window.Resources>
<Style TargetType="Button">
<Setter Property="Background"
Value="WhiteSmoke" />
</Style>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="35" />
<RowDefinition Height="176*" />
<RowDefinition Height="68" />
<RowDefinition Height="5" />
<RowDefinition Height="39" />
</Grid.RowDefinitions>
<Grid Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="53" />
<ColumnDefinition Width="402*" />
<ColumnDefinition Width="77" />
</Grid.ColumnDefinitions>
<TextBlock Text="Source:"
Margin="10,10,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Height="16"
Width="39" />
<TextBox VerticalAlignment="Top"
Grid.Column="1"
HorizontalAlignment="Stretch"
Margin="10,8,10,0"
Height="22" />
<Button VerticalAlignment="Center"
Grid.Column="2"
HorizontalAlignment="Left"
Width="57"
Height="22"
Margin="10,8,0,5">
<StackPanel Orientation="Horizontal">
<Image Source="pack://application:,,,/Resources/search.png"
HorizontalAlignment="Left"
Height="16"
Margin="0,0,5,0"
VerticalAlignment="Top"
Width="16" />
<TextBlock Text="..." />
</StackPanel>
</Button>
</Grid>
<DataGrid Margin="10"
Grid.Row="1" />
<GroupBox x:Name="groupBox"
Grid.Row="2"
Margin="10,0,10,5"
VerticalAlignment="Bottom"
Height="60">
<GroupBox.Header>
<StackPanel Orientation="Horizontal">
<Image Source="pack://application:,,,/Resources/toolbox.png"
HorizontalAlignment="Left"
Height="16"
Margin="0,0,5,0"
VerticalAlignment="Top"
Width="16" />
<TextBlock Text="Toolbox" />
</StackPanel>
</GroupBox.Header>
<Grid>
<Button VerticalAlignment="Center"
HorizontalAlignment="Left"
Width="110"
Height="22"
Margin="10,6,0,7">
<StackPanel Orientation="Horizontal">
<Image x:Name="image"
Source="pack://application:,,,/Resources/www.png"
HorizontalAlignment="Left"
Height="16"
Margin="0,0,5,0"
VerticalAlignment="Top"
Width="16" />
<TextBlock Text="Search Online" />
</StackPanel>
</Button>
<Button VerticalAlignment="Center"
HorizontalAlignment="Left"
Width="110"
Height="22"
Margin="125,5,0,7">
<StackPanel Orientation="Horizontal">
<Image Source="pack://application:,,,/Resources/save.png"
HorizontalAlignment="Left"
Height="16"
Margin="0,0,5,0"
VerticalAlignment="Top"
Width="16" />
<TextBlock Text="Save Tags" />
</StackPanel>
</Button>
<Button VerticalAlignment="Center"
HorizontalAlignment="Left"
Width="110"
Height="22"
Margin="380,6,0,6">
<StackPanel Orientation="Horizontal">
<Image Source="pack://application:,,,/Resources/shutdown.png"
HorizontalAlignment="Left"
Height="16"
Margin="0,0,5,0"
VerticalAlignment="Top"
Width="16" />
<TextBlock Text="Exit" />
</StackPanel>
</Button>
</Grid>
</GroupBox>
<Separator Grid.Row="3"
Margin="10,0,10,0" />
<local:AboutUserControl Margin="10,10,10,9"
Grid.Row="4" />
</Grid>
</Window>
28 changes: 28 additions & 0 deletions MusicTaggingLight/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace MusicTaggingLight
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}
Loading

0 comments on commit 2b6dc3f

Please sign in to comment.