[Mwinapi-commits] SF.net SVN: mwinapi:[105] trunk/Tools/ScreenShooter
Status: Beta
Brought to you by:
schierlm
From: <sch...@us...> - 2011-01-23 15:44:05
|
Revision: 105 http://mwinapi.svn.sourceforge.net/mwinapi/?rev=105&view=rev Author: schierlm Date: 2011-01-23 15:43:58 +0000 (Sun, 23 Jan 2011) Log Message: ----------- Add a standalone ScreenShooter project that starts Paint.NET automatically, as discussed in <http://forums.getpaint.net/index.php?/topic/20860-> Added Paths: ----------- trunk/Tools/ScreenShooter/MainFormPaintDotNet.Designer.cs trunk/Tools/ScreenShooter/MainFormPaintDotNet.cs trunk/Tools/ScreenShooter/MainFormPaintDotNet.resx trunk/Tools/ScreenShooter/ScreenShooterPaintDotNet.csproj trunk/Tools/ScreenShooter/ScreenShooterPaintDotNet.sln Property Changed: ---------------- trunk/Tools/ScreenShooter/ Property changes on: trunk/Tools/ScreenShooter ___________________________________________________________________ Modified: svn:ignore - bin obj ScreenShooter.csproj.user ScreenShooterStandalone.csproj.user ScreenShooterStandalone.suo ScreenShooterPlugin.csproj.user ScreenShooterPlugin.suo + bin obj ScreenShooter.csproj.user ScreenShooterStandalone.csproj.user ScreenShooterStandalone.suo ScreenShooterPlugin.csproj.user ScreenShooterPlugin.suo ScreenShooterPaintDotNet.suo Added: trunk/Tools/ScreenShooter/MainFormPaintDotNet.Designer.cs =================================================================== --- trunk/Tools/ScreenShooter/MainFormPaintDotNet.Designer.cs (rev 0) +++ trunk/Tools/ScreenShooter/MainFormPaintDotNet.Designer.cs 2011-01-23 15:43:58 UTC (rev 105) @@ -0,0 +1,130 @@ +namespace ScreenShooter +{ + partial class MainFormPaintDotNet + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.Windows.Forms.ContextMenuStrip trayMenu; + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFormPaintDotNet)); + this.configureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components); + this.hideButton = new System.Windows.Forms.Button(); + this.settings = new ScreenShooter.ScreenshotSettings(); + trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components); + trayMenu.SuspendLayout(); + this.SuspendLayout(); + // + // trayMenu + // + trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.configureToolStripMenuItem, + this.toolStripSeparator1, + this.quitToolStripMenuItem}); + trayMenu.Name = "trayMenu"; + trayMenu.Size = new System.Drawing.Size(140, 54); + // + // configureToolStripMenuItem + // + this.configureToolStripMenuItem.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); + this.configureToolStripMenuItem.Name = "configureToolStripMenuItem"; + this.configureToolStripMenuItem.Size = new System.Drawing.Size(139, 22); + this.configureToolStripMenuItem.Text = "&Configure"; + this.configureToolStripMenuItem.Click += new System.EventHandler(this.configureToolStripMenuItem_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(136, 6); + // + // quitToolStripMenuItem + // + this.quitToolStripMenuItem.Name = "quitToolStripMenuItem"; + this.quitToolStripMenuItem.Size = new System.Drawing.Size(139, 22); + this.quitToolStripMenuItem.Text = "&Quit"; + this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click); + // + // trayIcon + // + this.trayIcon.ContextMenuStrip = trayMenu; + this.trayIcon.Text = "ScreenShooter Paint.NET Edition"; + this.trayIcon.Visible = true; + this.trayIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.trayIcon_MouseDoubleClick); + // + // hideButton + // + this.hideButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.hideButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.hideButton.Location = new System.Drawing.Point(301, 34); + this.hideButton.Name = "hideButton"; + this.hideButton.Size = new System.Drawing.Size(75, 23); + this.hideButton.TabIndex = 0; + this.hideButton.Text = "Hide"; + this.hideButton.UseVisualStyleBackColor = true; + this.hideButton.Click += new System.EventHandler(this.hideButton_Click); + // + // settings + // + this.settings.Location = new System.Drawing.Point(12, 12); + this.settings.Name = "settings"; + this.settings.Size = new System.Drawing.Size(376, 304); + this.settings.TabIndex = 1; + this.settings.ScreenshotTaken += new ScreenShooter.ScreenshotSettings.ScreenshotHandler(this.settings_ScreenshotTaken); + // + // MainFormPaintDotNet + // + this.AcceptButton = this.hideButton; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CancelButton = this.hideButton; + this.ClientSize = new System.Drawing.Size(400, 328); + this.Controls.Add(this.hideButton); + this.Controls.Add(this.settings); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.Name = "MainFormPaintDotNet"; + this.Text = "ScreenShooter Paint.NET Edition"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormPaintDotNet_FormClosing); + trayMenu.ResumeLayout(false); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.NotifyIcon trayIcon; + private System.Windows.Forms.ToolStripMenuItem configureToolStripMenuItem; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; + private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem; + private System.Windows.Forms.Button hideButton; + private ScreenshotSettings settings; + } +} + Added: trunk/Tools/ScreenShooter/MainFormPaintDotNet.cs =================================================================== --- trunk/Tools/ScreenShooter/MainFormPaintDotNet.cs (rev 0) +++ trunk/Tools/ScreenShooter/MainFormPaintDotNet.cs 2011-01-23 15:43:58 UTC (rev 105) @@ -0,0 +1,90 @@ +using System; +using System.Drawing; +using System.Windows.Forms; +using System.IO; +using System.Drawing.Imaging; +using Microsoft.Win32; +using System.Diagnostics; + +namespace ScreenShooter +{ + public partial class MainFormPaintDotNet : Form + { + + int counter = 0; + string lastScreenshot = null; + + public MainFormPaintDotNet() + { + InitializeComponent(); + trayIcon.Icon = this.Icon; + string[] args = Environment.GetCommandLineArgs(); + if (args.Length > 1) + settings.Settings = args[1]; + settings.EnableHotkey(); + } + + private void settings_ScreenshotTaken(Bitmap bitmap) + { + MainFormPaintDotNet_FormClosing(this, null); + lastScreenshot = Path.Combine(Path.GetTempPath(), "~pdn" + counter + ".png"); + counter++; + bitmap.Save(lastScreenshot, ImageFormat.Png); + string path = Registry.GetValue(@"HKEY_LOCAL_MACHINE\Software\Paint.NET", "TARGETDIR", null) as string; + if (path == null) + { + MessageBox.Show("Paint.NET is not installed!"); + } + else + { + Process.Start(Path.Combine(path, "PaintDotNet.exe"), "untitled:\"" + lastScreenshot+"\""); + } + } + + private void quitToolStripMenuItem_Click(object sender, EventArgs e) + { + Dispose(); + } + + private void configureToolStripMenuItem_Click(object sender, EventArgs e) + { + Visible = true; + } + + private void trayIcon_MouseDoubleClick(object sender, MouseEventArgs e) + { + Visible = true; + } + + private void hideButton_Click(object sender, EventArgs e) + { + Keys mask = Keys.Shift | Keys.Control; + if ((Control.ModifierKeys & mask) == mask) + { + Clipboard.Clear(); + Clipboard.SetText(settings.Settings); + } + Visible = false; + } + + private void MainFormPaintDotNet_FormClosing(object sender, FormClosingEventArgs e) + { + if (lastScreenshot != null) + { + File.Delete(lastScreenshot); + lastScreenshot = null; + } + } + + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainFormPaintDotNet()); + } + } +} Added: trunk/Tools/ScreenShooter/MainFormPaintDotNet.resx =================================================================== --- trunk/Tools/ScreenShooter/MainFormPaintDotNet.resx (rev 0) +++ trunk/Tools/ScreenShooter/MainFormPaintDotNet.resx 2011-01-23 15:43:58 UTC (rev 105) @@ -0,0 +1,143 @@ +<?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.Runtime.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:import namespace="http://www.w3.org/XML/1998/namespace" /> + <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" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </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" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </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> + <metadata name="trayMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>13, 17</value> + </metadata> + <metadata name="trayMenu.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> + <value>False</value> + </metadata> + <metadata name="trayIcon.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>102, 17</value> + </metadata> + <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> + <value>53</value> + </metadata> + <assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> + <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + AAABAAEAEBAQAAEABAAoAQAAFgAAACgAAAAQAAAAIAAAAAEABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA/wAAAICAgAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAACIiIAAiIiIAIiIDMwIiIgAiIAMzACIiACIgMzMwIiIAIiADMwAiIgAiIgMzAi + IiACIiIAAiIiIAIiIiIiIiIgAAAAAAAAAAAAAAAiIgABEAAAACMyAAAAAAAAIzIAAAAAAAAiIgAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+BkAAPgf + AAD4HwAA+B8AAPgfAAD//wAA +</value> + </data> +</root> \ No newline at end of file Added: trunk/Tools/ScreenShooter/ScreenShooterPaintDotNet.csproj =================================================================== --- trunk/Tools/ScreenShooter/ScreenShooterPaintDotNet.csproj (rev 0) +++ trunk/Tools/ScreenShooter/ScreenShooterPaintDotNet.csproj 2011-01-23 15:43:58 UTC (rev 105) @@ -0,0 +1,133 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProductVersion>9.0.30729</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{2723EC84-45DE-4B04-9D90-770B7846A9B1}</ProjectGuid> + <OutputType>WinExe</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>ScreenShooter</RootNamespace> + <AssemblyName>ScreenShooterPaintDotNet</AssemblyName> + <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + <TargetFrameworkSubset> + </TargetFrameworkSubset> + <ApplicationIcon>icon.ico</ApplicationIcon> + <StartupObject> + </StartupObject> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <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' "> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="Accessibility" /> + <Reference Include="System" /> + <Reference Include="System.Data" /> + <Reference Include="System.Drawing" /> + <Reference Include="System.Windows.Forms" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="..\..\ManagedWinapi\ApiHelper.cs"> + <Link>Standalone\ApiHelper.cs</Link> + </Compile> + <Compile Include="..\..\ManagedWinapi\EventDispatchingNativeWindow.cs"> + <Link>Standalone\EventDispatchingNativeWindow.cs</Link> + </Compile> + <Compile Include="..\..\ManagedWinapi\Hook.cs"> + <Link>Standalone\Hook.cs</Link> + <SubType>Component</SubType> + </Compile> + <Compile Include="..\..\ManagedWinapi\Hotkey.cs"> + <Link>Standalone\Hotkey.cs</Link> + <SubType>Component</SubType> + </Compile> + <Compile Include="..\..\ManagedWinapi\KeyboardKey.cs"> + <Link>Standalone\KeyboardKey.cs</Link> + </Compile> + <Compile Include="..\..\ManagedWinapi\LowLevelHook.cs"> + <Link>Standalone\LowLevelHook.cs</Link> + <SubType>Component</SubType> + </Compile> + <Compile Include="..\..\ManagedWinapi\PInvokeTypes.cs"> + <Link>Standalone\PInvokeTypes.cs</Link> + </Compile> + <Compile Include="..\..\ManagedWinapi\Screenshot.cs"> + <Link>Standalone\Screenshot.cs</Link> + </Compile> + <Compile Include="..\..\ManagedWinapi\ShortcutBox.cs"> + <Link>Standalone\ShortcutBox.cs</Link> + <SubType>Component</SubType> + </Compile> + <Compile Include="..\..\ManagedWinapi\ShortcutBox.designer.cs"> + <Link>Standalone\ShortcutBox.designer.cs</Link> + <DependentUpon>ShortcutBox.cs</DependentUpon> + </Compile> + <Compile Include="..\..\ManagedWinapi\SystemAccessibleObject.cs"> + <Link>Standalone\SystemAccessibleObject.cs</Link> + </Compile> + <Compile Include="..\..\ManagedWinapi\SystemWindow.cs"> + <Link>Standalone\SystemWindow.cs</Link> + </Compile> + <Compile Include="MainFormPaintDotNet.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="MainFormPaintDotNet.Designer.cs"> + <DependentUpon>MainFormPaintDotNet.cs</DependentUpon> + </Compile> + <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="ScreenshotSettings.cs"> + <SubType>UserControl</SubType> + </Compile> + <Compile Include="ScreenshotSettings.Designer.cs"> + <DependentUpon>ScreenshotSettings.cs</DependentUpon> + </Compile> + <Compile Include="SelectorForm.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="SelectorForm.Designer.cs"> + <DependentUpon>SelectorForm.cs</DependentUpon> + </Compile> + <Compile Include="Standalone\StandaloneStubs.cs" /> + <EmbeddedResource Include="..\..\ManagedWinapi\ShortcutBox.resx"> + <Link>Standalone\ShortcutBox.resx</Link> + <DependentUpon>ShortcutBox.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="MainFormPaintDotNet.resx"> + <DependentUpon>MainFormPaintDotNet.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="ScreenshotSettings.resx"> + <DependentUpon>ScreenshotSettings.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="SelectorForm.resx"> + <DependentUpon>SelectorForm.cs</DependentUpon> + </EmbeddedResource> + </ItemGroup> + <ItemGroup> + <Content Include="icon.ico" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <!-- To modify your build process, add your task inside one of the targets below and uncomment it. + Other similar extension points exist, see Microsoft.Common.targets. + <Target Name="BeforeBuild"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> +</Project> \ No newline at end of file Added: trunk/Tools/ScreenShooter/ScreenShooterPaintDotNet.sln =================================================================== --- trunk/Tools/ScreenShooter/ScreenShooterPaintDotNet.sln (rev 0) +++ trunk/Tools/ScreenShooter/ScreenShooterPaintDotNet.sln 2011-01-23 15:43:58 UTC (rev 105) @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual C# Express 2008 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScreenShooterPaintDotNet", "ScreenShooterPaintDotNet.csproj", "{2723EC84-45DE-4B04-9D90-770B7846A9B1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2723EC84-45DE-4B04-9D90-770B7846A9B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2723EC84-45DE-4B04-9D90-770B7846A9B1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2723EC84-45DE-4B04-9D90-770B7846A9B1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2723EC84-45DE-4B04-9D90-770B7846A9B1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |