Skip to content

Commit

Permalink
Repack
Browse files Browse the repository at this point in the history
  • Loading branch information
changbw001 committed Nov 29, 2016
1 parent 403cce6 commit abbad22
Show file tree
Hide file tree
Showing 57 changed files with 1,335 additions and 1 deletion.
Binary file added .vs/DesktopNote/v14/.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion DesktopNote.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="Xceed.Wpf.Toolkit">
<HintPath>.\Xceed.Wpf.Toolkit.dll</HintPath>
<HintPath>Resources\Xceed.Wpf.Toolkit.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
Expand Down
Binary file added Resources/AlignCenter.ico
Binary file not shown.
Binary file added Resources/AlignJustify.ico
Binary file not shown.
Binary file added Resources/AlignLeft.ico
Binary file not shown.
Binary file added Resources/AlignRight.ico
Binary file not shown.
Binary file added Resources/Bold.ico
Binary file not shown.
Binary file added Resources/Bullets.ico
Binary file not shown.
Binary file added Resources/Copy.ico
Binary file not shown.
Binary file added Resources/Cut.ico
Binary file not shown.
Binary file added Resources/FindText.ico
Binary file not shown.
Binary file added Resources/FontColor.ico
Binary file not shown.
Binary file added Resources/IndentDecrease.ico
Binary file not shown.
Binary file added Resources/IndentIncrease.ico
Binary file not shown.
Binary file added Resources/Italic.ico
Binary file not shown.
Binary file added Resources/Numbering.ico
Binary file not shown.
Binary file added Resources/Paste.ico
Binary file not shown.
Binary file added Resources/PasteTextOnly.ico
Binary file not shown.
Binary file added Resources/Redo.ico
Binary file not shown.
Binary file added Resources/SizeDecrease.ico
Binary file not shown.
Binary file added Resources/SizeIncrease.ico
Binary file not shown.
Binary file added Resources/Strikethrough.ico
Binary file not shown.
Binary file added Resources/TextHighlightColorPicker.ico
Binary file not shown.
Binary file added Resources/Underline.ico
Binary file not shown.
Binary file added Resources/Undo.ico
Binary file not shown.
Binary file added Resources/Xceed.Wpf.Toolkit.dll
Binary file not shown.
Binary file modified bin/Release/DesktopNote.exe
Binary file not shown.
48 changes: 48 additions & 0 deletions bin/Release/DesktopNote.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="DesktopNote.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<userSettings>
<DesktopNote.MySettings>
<setting name="Win_Size" serializeAs="String">
<value>300, 350</value>
</setting>
<setting name="Win_Pos" serializeAs="String">
<value>0, 0</value>
</setting>
<setting name="Doc_Location" serializeAs="String">
<value>DesktopNoteContent</value>
</setting>
<setting name="Bak_Location" serializeAs="String">
<value>DesktopNoteContent.txt</value>
</setting>
<setting name="AutoDock" serializeAs="String">
<value>True</value>
</setting>
<setting name="UpgradeFlag" serializeAs="String">
<value>True</value>
</setting>
<setting name="DockedTo" serializeAs="String">
<value>0</value>
</setting>
<setting name="Font" serializeAs="String">
<value>Segoe Print</value>
</setting>
<setting name="FontColor" serializeAs="String">
<value>#FF000000</value>
</setting>
<setting name="BackColor" serializeAs="String">
<value>#00FFFFFF</value>
</setting>
<setting name="PaperColor" serializeAs="String">
<value>#FFFFF7C5</value>
</setting>
</DesktopNote.MySettings>
</userSettings>
</configuration>
Binary file added bin/Release/DesktopNote.pdb
Binary file not shown.
Binary file added bin/Release/DesktopNote.vshost.exe
Binary file not shown.
48 changes: 48 additions & 0 deletions bin/Release/DesktopNote.vshost.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="DesktopNote.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<userSettings>
<DesktopNote.MySettings>
<setting name="Win_Size" serializeAs="String">
<value>300, 350</value>
</setting>
<setting name="Win_Pos" serializeAs="String">
<value>0, 0</value>
</setting>
<setting name="Doc_Location" serializeAs="String">
<value>DesktopNoteContent</value>
</setting>
<setting name="Bak_Location" serializeAs="String">
<value>DesktopNoteContent.txt</value>
</setting>
<setting name="AutoDock" serializeAs="String">
<value>True</value>
</setting>
<setting name="UpgradeFlag" serializeAs="String">
<value>True</value>
</setting>
<setting name="DockedTo" serializeAs="String">
<value>0</value>
</setting>
<setting name="Font" serializeAs="String">
<value>Segoe Print</value>
</setting>
<setting name="FontColor" serializeAs="String">
<value>#FF000000</value>
</setting>
<setting name="BackColor" serializeAs="String">
<value>#00FFFFFF</value>
</setting>
<setting name="PaperColor" serializeAs="String">
<value>#FFFFF7C5</value>
</setting>
</DesktopNote.MySettings>
</userSettings>
</configuration>
11 changes: 11 additions & 0 deletions bin/Release/DesktopNote.vshost.exe.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
93 changes: 93 additions & 0 deletions bin/Release/DesktopNote.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added obj/Release/Application.baml
Binary file not shown.
80 changes: 80 additions & 0 deletions obj/Release/Application.g.i.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
#ExternalChecksum("..\..\Application.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","2E5F75DF9C8475E5317407F3172CB81F")
'------------------------------------------------------------------------------
' <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>
'------------------------------------------------------------------------------

Option Strict Off
Option Explicit On

Imports System
Imports System.Diagnostics
Imports System.Windows
Imports System.Windows.Automation
Imports System.Windows.Controls
Imports System.Windows.Controls.Primitives
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Ink
Imports System.Windows.Input
Imports System.Windows.Markup
Imports System.Windows.Media
Imports System.Windows.Media.Animation
Imports System.Windows.Media.Effects
Imports System.Windows.Media.Imaging
Imports System.Windows.Media.Media3D
Imports System.Windows.Media.TextFormatting
Imports System.Windows.Navigation
Imports System.Windows.Shapes
Imports System.Windows.Shell


'''<summary>
'''Application
'''</summary>
Partial Public Class Application
Inherits System.Windows.Application

Private _contentLoaded As Boolean

'''<summary>
'''InitializeComponent
'''</summary>
<System.Diagnostics.DebuggerNonUserCodeAttribute(), _
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
Public Sub InitializeComponent()
If _contentLoaded Then
Return
End If
_contentLoaded = true

#ExternalSource("..\..\Application.xaml",3)
AddHandler Startup, New System.Windows.StartupEventHandler(AddressOf Me.RunCheck)

#End ExternalSource
Dim resourceLocater As System.Uri = New System.Uri("/DesktopNote;component/application.xaml", System.UriKind.Relative)

#ExternalSource("..\..\Application.xaml",1)
System.Windows.Application.LoadComponent(Me, resourceLocater)

#End ExternalSource
End Sub

'''<summary>
'''Application Entry Point.
'''</summary>
<System.STAThreadAttribute(), _
System.Diagnostics.DebuggerNonUserCodeAttribute(), _
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
Public Shared Sub Main()
Dim app As Application = New Application()
app.InitializeComponent
app.Run
End Sub
End Class

80 changes: 80 additions & 0 deletions obj/Release/Application.g.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
#ExternalChecksum("..\..\Application.xaml","{406ea660-64cf-4c82-b6f0-42d48172a799}","2E5F75DF9C8475E5317407F3172CB81F")
'------------------------------------------------------------------------------
' <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>
'------------------------------------------------------------------------------

Option Strict Off
Option Explicit On

Imports System
Imports System.Diagnostics
Imports System.Windows
Imports System.Windows.Automation
Imports System.Windows.Controls
Imports System.Windows.Controls.Primitives
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Ink
Imports System.Windows.Input
Imports System.Windows.Markup
Imports System.Windows.Media
Imports System.Windows.Media.Animation
Imports System.Windows.Media.Effects
Imports System.Windows.Media.Imaging
Imports System.Windows.Media.Media3D
Imports System.Windows.Media.TextFormatting
Imports System.Windows.Navigation
Imports System.Windows.Shapes
Imports System.Windows.Shell


'''<summary>
'''Application
'''</summary>
Partial Public Class Application
Inherits System.Windows.Application

Private _contentLoaded As Boolean

'''<summary>
'''InitializeComponent
'''</summary>
<System.Diagnostics.DebuggerNonUserCodeAttribute(), _
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
Public Sub InitializeComponent()
If _contentLoaded Then
Return
End If
_contentLoaded = true

#ExternalSource("..\..\Application.xaml",3)
AddHandler Startup, New System.Windows.StartupEventHandler(AddressOf Me.RunCheck)

#End ExternalSource
Dim resourceLocater As System.Uri = New System.Uri("/DesktopNote;component/application.xaml", System.UriKind.Relative)

#ExternalSource("..\..\Application.xaml",1)
System.Windows.Application.LoadComponent(Me, resourceLocater)

#End ExternalSource
End Sub

'''<summary>
'''Application Entry Point.
'''</summary>
<System.STAThreadAttribute(), _
System.Diagnostics.DebuggerNonUserCodeAttribute(), _
System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")> _
Public Shared Sub Main()
Dim app As Application = New Application()
app.InitializeComponent
app.Run
End Sub
End Class

Binary file not shown.
Binary file not shown.
Binary file added obj/Release/DesktopNote.Resources.resources
Binary file not shown.
Binary file added obj/Release/DesktopNote.exe
Binary file not shown.
Binary file added obj/Release/DesktopNote.g.resources
Binary file not shown.
Binary file added obj/Release/DesktopNote.pdb
Binary file not shown.
19 changes: 19 additions & 0 deletions obj/Release/DesktopNote.vbproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
C:\Users\changbw001\Source\Repos\DesktopNote\bin\Release\DesktopNote.exe.config
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote.vbprojResolveAssemblyReference.cache
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\Win_Search.baml
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\Application.baml
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\Win_Search.g.vb
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\Application.g.vb
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote_MarkupCompile.cache
C:\Users\changbw001\Source\Repos\DesktopNote\bin\Release\DesktopNote.exe
C:\Users\changbw001\Source\Repos\DesktopNote\bin\Release\DesktopNote.pdb
C:\Users\changbw001\Source\Repos\DesktopNote\bin\Release\DesktopNote.xml
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\MainWindow.g.vb
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote_MarkupCompile.lref
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\MainWindow.baml
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote.g.resources
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote.Resources.resources
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote.vbproj.GenerateResource.Cache
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote.exe
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote.xml
C:\Users\changbw001\Source\Repos\DesktopNote\obj\Release\DesktopNote.pdb
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit abbad22

Please sign in to comment.