提交 0b54a344 编写于 作者: Z zh

网易云音乐界面

上级 715bb9a2
......@@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApp21"
StartupUri="MainWindow.xaml">
StartupUri="Window1.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
......
<Window x:Class="WpfApp21.Window1"
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:WpfApp21"
mc:Ignorable="d"
Title="Window1" Height="700" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Button Content="启动动画" Width="100" Height="40" Click="Button_Click" />
<Grid Grid.Row="1">
<Grid Name="grid" >
<Grid.Background>
<ImageBrush ImageSource="background.jpg" Stretch="Uniform"/>
</Grid.Background>
</Grid>
</Grid>
</Grid>
</Window>
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.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace WpfApp21
{
/// <summary>
/// Window1.xaml 的交互逻辑
/// </summary>
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
System.Windows.Media.Animation.Storyboard sb = new System.Windows.Media.Animation.Storyboard();
double left = grid.Margin.Left,
top = grid.Margin.Top,
right = grid.Margin.Right,
bottom = grid.Margin.Bottom;
ThicknessAnimation thicknessAnimation = new ThicknessAnimation();
thicknessAnimation.From = new Thickness(left, top, right, bottom);
thicknessAnimation.To = new Thickness(left + 200, top + 50, right, bottom + 50);
thicknessAnimation.Duration = new TimeSpan(0, 0, 0, 0, 500);
System.Windows.Media.Animation.Storyboard.SetTarget(thicknessAnimation, grid);
System.Windows.Media.Animation.Storyboard.SetTargetProperty(thicknessAnimation, new PropertyPath("Margin", new object[] { }));
sb.Completed += Sb_Completed;
sb.Children.Add(thicknessAnimation);
sb.Begin();
}
private void Sb_Completed(object sender, EventArgs e)
{
System.Windows.Media.Animation.Storyboard sb = new System.Windows.Media.Animation.Storyboard();
double left = grid.Margin.Left,
top = grid.Margin.Top,
right = grid.Margin.Right,
bottom = grid.Margin.Bottom;
ThicknessAnimation thicknessAnimation = new ThicknessAnimation();
thicknessAnimation.From = new Thickness(left, top, right, bottom);
thicknessAnimation.To = new Thickness(left + 2000, top, right, bottom);
thicknessAnimation.Duration = new TimeSpan(0, 0, 0, 0, 800);
System.Windows.Media.Animation.Storyboard.SetTarget(thicknessAnimation, grid);
System.Windows.Media.Animation.Storyboard.SetTargetProperty(thicknessAnimation, new PropertyPath("Margin", new object[] { }));
sb.Children.Add(thicknessAnimation);
sb.Begin();
}
}
}
#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CD6502B98924397A406B572130762E437277A802"
#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D9214A73DB642149EFF387815A1A4EFEBB341B7D"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -54,7 +54,7 @@ namespace WpfApp21 {
_contentLoaded = true;
#line 5 "..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
this.StartupUri = new System.Uri("Window1.xaml", System.UriKind.Relative);
#line default
#line hidden
......
#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CD6502B98924397A406B572130762E437277A802"
#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D9214A73DB642149EFF387815A1A4EFEBB341B7D"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -54,7 +54,7 @@ namespace WpfApp21 {
_contentLoaded = true;
#line 5 "..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
this.StartupUri = new System.Uri("Window1.xaml", System.UriKind.Relative);
#line default
#line hidden
......
#pragma checksum "..\..\Window1.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7FD73817BCFF36ABC9401E3C4FAF246972DC470B"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
using WpfApp21;
namespace WpfApp21 {
/// <summary>
/// Window1
/// </summary>
public partial class Window1 : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 19 "..\..\Window1.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid grid;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/WpfApp21;component/window1.xaml", System.UriKind.Relative);
#line 1 "..\..\Window1.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
#line 15 "..\..\Window1.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default
#line hidden
return;
case 2:
this.grid = ((System.Windows.Controls.Grid)(target));
return;
}
this._contentLoaded = true;
}
}
}
#pragma checksum "..\..\Window1.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7FD73817BCFF36ABC9401E3C4FAF246972DC470B"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
using WpfApp21;
namespace WpfApp21 {
/// <summary>
/// Window1
/// </summary>
public partial class Window1 : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 19 "..\..\Window1.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid grid;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/WpfApp21;component/window1.xaml", System.UriKind.Relative);
#line 1 "..\..\Window1.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
#line 15 "..\..\Window1.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
#line default
#line hidden
return;
case 2:
this.grid = ((System.Windows.Controls.Grid)(target));
return;
}
this._contentLoaded = true;
}
}
}
......@@ -10,11 +10,11 @@ none
false
DEBUG;TRACE
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\App.xaml
11151548125
2462529049
9406997725
6-1344379206
17-667782845
MainWindow.xaml;
MainWindow.xaml;Window1.xaml;
True
False
......@@ -4,17 +4,17 @@
winexe
C#
.cs
C:\Users\zhouh\Desktop\界面设计(1)\WpfApp21\obj\Debug\
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\
WpfApp21
none
false
DEBUG;TRACE
C:\Users\zhouh\Desktop\界面设计(1)\WpfApp21\App.xaml
11151548125
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\App.xaml
2462529049
9406997725
17-737494957
MainWindow.xaml;
101080365021
17-667782845
MainWindow.xaml;Window1.xaml;
True
False

FC:\Users\zhouh\Desktop\界面设计(1)\WpfApp21\App.xaml;;
FC:\Users\zhouh\Desktop\界面设计(1)\WpfApp21\MainWindow.xaml;;

FC:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\App.xaml;;
FC:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\MainWindow.xaml;;
FC:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\Window1.xaml;;
daa2bb2904c65fc6dd2e11689177e2bbb5ab2719
9ea0169910c88d922ff92a653731122f33719f6e
......@@ -42,3 +42,27 @@ C:\Users\zhouh\Desktop\界面设计(1)\界面设计\obj\Debug\界面设计.cspro
C:\Users\zhouh\Desktop\界面设计(1)\界面设计\obj\Debug\界面设计.csproj.CopyComplete
C:\Users\zhouh\Desktop\界面设计(1)\界面设计\obj\Debug\WpfApp21.exe
C:\Users\zhouh\Desktop\界面设计(1)\界面设计\obj\Debug\WpfApp21.pdb
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\bin\Debug\WpfApp21.exe.config
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\bin\Debug\WpfApp21.exe
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\bin\Debug\WpfApp21.pdb
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\bin\Debug\MaterialDesignColors.dll
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\bin\Debug\MaterialDesignThemes.Wpf.dll
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\bin\Debug\MaterialDesignColors.pdb
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\bin\Debug\MaterialDesignThemes.Wpf.pdb
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\bin\Debug\MaterialDesignThemes.Wpf.xml
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\界面设计.csprojAssemblyReference.cache
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\MainWindow.g.cs
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\Window1.g.cs
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\App.g.cs
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\WpfApp21_MarkupCompile.cache
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\WpfApp21_MarkupCompile.lref
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\App.baml
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\MainWindow.baml
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\Window1.baml
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\WpfApp21.g.resources
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\WpfApp21.Properties.Resources.resources
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\界面设计.csproj.GenerateResource.cache
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\界面设计.csproj.CoreCompileInputs.cache
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\界面设计.csproj.CopyComplete
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\WpfApp21.exe
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(1)\界面设计\obj\Debug\WpfApp21.pdb
......@@ -68,6 +68,9 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="Window1.xaml.cs">
<DependentUpon>Window1.xaml</DependentUpon>
</Compile>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
......@@ -80,6 +83,10 @@
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Page Include="Window1.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
......

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.572
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "网易云界面", "网易云界面\网易云界面.csproj", "{8DE43A42-C883-48AD-9F6D-9C2C3C25EAC8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8DE43A42-C883-48AD-9F6D-9C2C3C25EAC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8DE43A42-C883-48AD-9F6D-9C2C3C25EAC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8DE43A42-C883-48AD-9F6D-9C2C3C25EAC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8DE43A42-C883-48AD-9F6D-9C2C3C25EAC8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7FFB0EFE-A7B0-414F-9FB9-A89515787C4C}
EndGlobalSection
EndGlobal
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
\ No newline at end of file
<Application x:Class="wof.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:wof"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace wof
{
/// <summary>
/// App.xaml 的交互逻辑
/// </summary>
public partial class App : Application
{
}
}
<Window x:Class="wof.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:wof"
mc:Ignorable="d"
Title="MainWindow" Height="770" Width="1175" WindowStyle="None" AllowsTransparency="True">
<Border BorderThickness="1" BorderBrush="#E5E5E5" Name="bor">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition/>
<RowDefinition Height="60"/>
</Grid.RowDefinitions>
<Grid Background="#BC2F2E">
<TextBlock Text="网易云音乐" Margin="10 0 0 0" Foreground="White" VerticalAlignment="Center"/>
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="—" Foreground="White"/>
<TextBlock Text="☐" Margin="10 0 10 0" Foreground="White"/>
<TextBlock Text="✕" Margin="0 0 10 0" Foreground="White"/>
</StackPanel>
</Grid>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Border BorderThickness="0 0 1 0" BorderBrush="#E5E5E5">
<Grid Background="#F3F3F5">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="60"/>
</Grid.RowDefinitions>
<Grid Margin="15 10 0 0">
<StackPanel>
<TextBlock Text="&#xe60a;" FontSize="20" FontFamily="/#iconfont"/>
<StackPanel Height="30" Orientation="Horizontal" VerticalAlignment="Center" Margin="0 10 0 0">
<TextBlock Text="&#xe63d;" FontSize="16" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="搜索" Margin="10 0 0 0" VerticalAlignment="Center" Foreground="#666666"/>
</StackPanel>
<StackPanel Height="30" Orientation="Horizontal" VerticalAlignment="Center" Margin="0 10 0 0">
<TextBlock Text="&#xe667;" FontSize="16" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="发现音乐" Margin="10 0 0 0" VerticalAlignment="Center" Foreground="#666666"/>
</StackPanel>
<StackPanel Height="30" Orientation="Horizontal" VerticalAlignment="Center" Margin="0 10 0 0">
<TextBlock Text="&#xe618;" FontSize="16" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="MV" Margin="10 0 0 0" VerticalAlignment="Center" Foreground="#666666"/>
</StackPanel>
<StackPanel Height="30" Orientation="Horizontal" VerticalAlignment="Center" Margin="0 10 0 0">
<TextBlock Text="&#xe60b;" FontSize="16" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="朋友" Margin="10 0 0 0" VerticalAlignment="Center" Foreground="#666666"/>
</StackPanel>
<StackPanel Margin="0 40 0 0">
<TextBlock Text="我的音乐" Foreground="#666666"/>
<StackPanel Height="30" Orientation="Horizontal" VerticalAlignment="Center" Margin="0 10 0 0">
<TextBlock Text="&#xe69d;" FontSize="16" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="本地音乐" VerticalAlignment="Center" Margin="10 0 0 0" Foreground="#666666"/>
</StackPanel>
<StackPanel Height="30" Orientation="Horizontal" VerticalAlignment="Center" Margin="0 10 0 0">
<TextBlock Text="&#xe7eb;" FontSize="16" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="下载管理" VerticalAlignment="Center" Margin="10 0 0 0" Foreground="#666666"/>
</StackPanel>
<StackPanel Height="30" Orientation="Horizontal" VerticalAlignment="Center" Margin="0 10 0 0">
<TextBlock Text="&#xe6f8;" FontSize="16" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="最近播放" VerticalAlignment="Center" Margin="10 0 0 0" Foreground="#666666"/>
</StackPanel>
</StackPanel>
<StackPanel Margin="0 40 0 0">
<UniformGrid Columns="2">
<TextBlock Text="创建的歌单" Foreground="#666666"/>
<TextBlock Text="㊉" HorizontalAlignment="Right" Margin="0 0 15 0" Foreground="#666666"/>
</UniformGrid>
<StackPanel Height="30" Orientation="Horizontal" VerticalAlignment="Center" Margin="0 10 0 0">
<TextBlock Text="&#xe501;" FontSize="20" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="我喜欢的音乐" VerticalAlignment="Center" Margin="10 0 0 0" Foreground="#666666"/>
</StackPanel>
</StackPanel>
</StackPanel>
</Grid>
<Border BorderThickness="0 0 0 1" BorderBrush="#E5E5E5" />
<Grid Grid.Row="1">
<UniformGrid Columns="2">
<TextBlock Text="未登录" Margin="15 0 0 0" Foreground="#666666" VerticalAlignment="Center"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<TextBlock Text="&#xe6c4;" FontSize="18" FontFamily="/#iconfont" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="&#xe619;" FontSize="14" VerticalAlignment="Center" FontFamily="/#iconfont" Foreground="#666666" Margin="10 0 10 0" />
</StackPanel>
</UniformGrid>
</Grid>
</Grid>
</Border>
<Grid Grid.Column="1">
<Grid.Background>
<ImageBrush ImageSource="background.png"/>
</Grid.Background>
</Grid>
</Grid>
<Grid Grid.Row="2" Background="White">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="60"/>
<ColumnDefinition Width="180"/>
<ColumnDefinition/>
<ColumnDefinition Width="240"/>
</Grid.ColumnDefinitions>
<Border CornerRadius="30" Background="#DEE0E1" Margin="5" />
<StackPanel Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Center">
<Border Background="#DF3B3B" CornerRadius="30" Width="30" Height="30">
<TextBlock Text="&#xe643;" HorizontalAlignment="Center" FontSize="14" FontFamily="/#iconfont" Foreground="White" VerticalAlignment="Center"/>
</Border>
<Border Background="#DF3B3B" CornerRadius="30" Width="40" Height="40" Margin="15 0 15 0">
<TextBlock Text="&#xe603;" HorizontalAlignment="Center" FontSize="24" FontFamily="/#iconfont" Foreground="White" VerticalAlignment="Center"/>
</Border>
<Border Background="#DF3B3B" CornerRadius="30" Width="30" Height="30">
<TextBlock Text="&#xe642;" HorizontalAlignment="Center" FontSize="14" FontFamily="/#iconfont" Foreground="White" VerticalAlignment="Center"/>
</Border>
</StackPanel>
<StackPanel Grid.Column="2" VerticalAlignment="Center">
<TextBlock Text="00:00 / 00:00" HorizontalAlignment="Right" Foreground="#666666"/>
<Border BorderThickness="1" BorderBrush="#E5E5E5" Margin="0 10 0 0"/>
</StackPanel>
<StackPanel Grid.Column="3" Orientation="Horizontal" HorizontalAlignment="Center" Margin="10 0 0 0">
<TextBlock Text="&#xe501;" FontFamily="/#iconfont" Width="50" FontSize="24" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="&#xe543;" FontFamily="/#iconfont" Width="50" FontSize="22" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="&#xe615;" FontFamily="/#iconfont" Width="50" FontSize="22" Foreground="#666666" VerticalAlignment="Center"/>
<TextBlock Text="&#xe614;" FontFamily="/#iconfont" Width="50" FontSize="22" Foreground="#666666" VerticalAlignment="Center"/>
</StackPanel>
</Grid>
</Grid>
</Border>
</Window>
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 wof
{
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("wof")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("wof")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// 将 ComVisible 设置为 false 会使此程序集中的类型
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
//请将此类型的 ComVisible 特性设置为 true。
[assembly: ComVisible(false)]
//若要开始生成可本地化的应用程序,请设置
//.csproj 文件中的 <UICulture>CultureYouAreCodingWith</UICulture>
//例如,如果您在源文件中使用的是美国英语,
//使用的是美国英语,请将 <UICulture> 设置为 en-US。 然后取消
//对以下 NeutralResourceLanguage 特性的注释。 更新
//以下行中的“en-US”以匹配项目文件中的 UICulture 设置。
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //主题特定资源词典所处位置
//(未在页面中找到资源时使用,
//或应用程序资源字典中找到时使用)
ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置
//(未在页面中找到资源时使用,
//、应用程序或任何主题专用资源字典中找到时使用)
)]
// 程序集的版本信息由下列四个值组成:
//
// 主版本
// 次版本
// 生成号
// 修订号
//
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本: 4.0.30319.42000
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace wof.Properties
{
/// <summary>
/// 强类型资源类,用于查找本地化字符串等。
/// </summary>
// 此类是由 StronglyTypedResourceBuilder
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
// 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// (以 /str 作为命令选项),或重新生成 VS 项目。
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
}
/// <summary>
/// 返回此类使用的缓存 ResourceManager 实例。
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("wof.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// 覆盖当前线程的 CurrentUICulture 属性
/// 使用此强类型的资源类的资源查找。
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
\ No newline at end of file
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace wof.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
return defaultInstance;
}
}
}
}
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
\ No newline at end of file
#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BDB0F21A3CDD13669E56EA70B72216515929CD04"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
using wof;
namespace wof {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
#line 5 "..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
wof.App app = new wof.App();
app.InitializeComponent();
app.Run();
}
}
}
#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BDB0F21A3CDD13669E56EA70B72216515929CD04"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
using wof;
namespace wof {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
#line 5 "..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
wof.App app = new wof.App();
app.InitializeComponent();
app.Run();
}
}
}
#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1CE482879CDFFD1AC2525228E70801CDFB0E4E49"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
using wof;
namespace wof {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 9 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Border bor;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/wof;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.bor = ((System.Windows.Controls.Border)(target));
return;
}
this._contentLoaded = true;
}
}
}
#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1CE482879CDFFD1AC2525228E70801CDFB0E4E49"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
using wof;
namespace wof {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 9 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Border bor;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/wof;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.bor = ((System.Windows.Controls.Border)(target));
return;
}
this._contentLoaded = true;
}
}
}
C:\Users\zhouh\source\repos\网易云界面\wof\bin\Debug\wof.exe.config
C:\Users\zhouh\source\repos\网易云界面\wof\bin\Debug\wof.exe
C:\Users\zhouh\source\repos\网易云界面\wof\bin\Debug\wof.pdb
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.csprojAssemblyReference.cache
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\MainWindow.g.cs
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\App.g.cs
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof_MarkupCompile.cache
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof_MarkupCompile.lref
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\MainWindow.baml
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.g.resources
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.Properties.Resources.resources
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.csproj.GenerateResource.cache
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.csproj.CoreCompileInputs.cache
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.exe
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\wof.pdb
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("background.png")]
wof
winexe
C#
.cs
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\
wof
none
false
DEBUG;TRACE
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\App.xaml
11151548125
5-2017746502
13-1142990016
MainWindow.xaml;
False
wof
winexe
C#
.cs
C:\Users\zhouh\source\repos\网易云界面\wof\obj\Debug\
wof
none
false
DEBUG;TRACE
C:\Users\zhouh\source\repos\网易云界面\wof\App.xaml
11151548125
9406997725
13-1142990016
MainWindow.xaml;
False

FC:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\MainWindow.xaml;;
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\bin\Debug\wof.exe.config
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\bin\Debug\wof.exe
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\bin\Debug\wof.pdb
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\网易云界面.csprojAssemblyReference.cache
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\MainWindow.g.cs
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\App.g.cs
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\wof_MarkupCompile.cache
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\wof_MarkupCompile.lref
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\MainWindow.baml
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\wof.g.resources
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\wof.Properties.Resources.resources
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\网易云界面.csproj.GenerateResource.cache
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\网易云界面.csproj.CoreCompileInputs.cache
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\wof.exe
C:\Users\zhouh\Desktop\WPF界面设计\界面设计(网易云音乐)\网易云界面\obj\Debug\wof.pdb
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{8DE43A42-C883-48AD-9F6D-9C2C3C25EAC8}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>wof</RootNamespace>
<AssemblyName>wof</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Resource Include="iconfont.ttf" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Resource Include="background.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册