Renamed CutToLength to CutList
This commit is contained in:
@@ -3,24 +3,24 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.31402.337
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CutToLength", "CutToLength\CutToLength.csproj", "{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SawCut", "SawCut\SawCut.csproj", "{3D873FF0-6930-4BCE-A5A9-DA5C20354DEE}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CutList", "CutList\CutList.csproj", "{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3D873FF0-6930-4BCE-A5A9-DA5C20354DEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3D873FF0-6930-4BCE-A5A9-DA5C20354DEE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3D873FF0-6930-4BCE-A5A9-DA5C20354DEE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3D873FF0-6930-4BCE-A5A9-DA5C20354DEE}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
@@ -3,9 +3,9 @@ using System.Drawing;
|
||||
using System.Drawing.Drawing2D;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace CutToLength.Controls
|
||||
namespace CutList.Controls
|
||||
{
|
||||
class BinLayoutView : Control
|
||||
public class BinLayoutView : Control
|
||||
{
|
||||
public Bin Bin { get; set; }
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<ProjectGuid>{3E82A1E3-07A8-40C4-ABC4-DF24C5120073}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>CutToLength</RootNamespace>
|
||||
<RootNamespace>CutList</RootNamespace>
|
||||
<AssemblyName>CutList</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace CutToLength.Forms
|
||||
namespace CutList.Forms
|
||||
{
|
||||
partial class MainForm
|
||||
{
|
||||
@@ -124,7 +124,7 @@
|
||||
//
|
||||
// itemBindingSource
|
||||
//
|
||||
this.itemBindingSource.DataSource = typeof(CutToLength.UIItem);
|
||||
this.itemBindingSource.DataSource = typeof(CutList.UIItem);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
@@ -164,7 +164,7 @@
|
||||
// toolStripButton1
|
||||
//
|
||||
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButton1.Image = global::CutToLength.Properties.Resources.Open_Folder_32;
|
||||
this.toolStripButton1.Image = global::CutList.Properties.Resources.Open_Folder_32;
|
||||
this.toolStripButton1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
|
||||
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButton1.Name = "toolStripButton1";
|
||||
@@ -176,7 +176,7 @@
|
||||
// saveButton
|
||||
//
|
||||
this.saveButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.saveButton.Image = global::CutToLength.Properties.Resources.Save_32;
|
||||
this.saveButton.Image = global::CutList.Properties.Resources.Save_32;
|
||||
this.saveButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
|
||||
this.saveButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.saveButton.Name = "saveButton";
|
||||
@@ -193,7 +193,7 @@
|
||||
// runButton
|
||||
//
|
||||
this.runButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.runButton.Image = global::CutToLength.Properties.Resources.Circled_Play_32;
|
||||
this.runButton.Image = global::CutList.Properties.Resources.Circled_Play_32;
|
||||
this.runButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
|
||||
this.runButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.runButton.Name = "runButton";
|
||||
@@ -11,7 +11,7 @@ using System.IO;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace CutToLength.Forms
|
||||
namespace CutList.Forms
|
||||
{
|
||||
public partial class MainForm : Form
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace CutToLength.Forms
|
||||
namespace CutList.Forms
|
||||
{
|
||||
partial class ResultsForm
|
||||
{
|
||||
@@ -40,7 +40,7 @@
|
||||
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
||||
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
||||
this.dataGridView2 = new System.Windows.Forms.DataGridView();
|
||||
this.binLayoutView1 = new CutToLength.Controls.BinLayoutView();
|
||||
this.binLayoutView1 = new CutList.Controls.BinLayoutView();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.uIItemBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
||||
@@ -202,7 +202,7 @@
|
||||
//
|
||||
// uIItemBindingSource
|
||||
//
|
||||
this.uIItemBindingSource.DataSource = typeof(CutToLength.UIItem);
|
||||
this.uIItemBindingSource.DataSource = typeof(CutList.UIItem);
|
||||
//
|
||||
// menuStrip1
|
||||
//
|
||||
@@ -11,7 +11,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace CutToLength.Forms
|
||||
namespace CutList.Forms
|
||||
{
|
||||
public partial class ResultsForm : Form
|
||||
{
|
||||
@@ -2,7 +2,7 @@
|
||||
using SawCut;
|
||||
using System;
|
||||
|
||||
namespace CutToLength
|
||||
namespace CutList
|
||||
{
|
||||
public class UIItem
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace CutToLength
|
||||
namespace CutList
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("CutToLength")]
|
||||
[assembly: AssemblyTitle("CutList")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("CutToLength")]
|
||||
[assembly: AssemblyProduct("CutList")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2017")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
@@ -8,7 +8,7 @@
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace CutToLength.Properties {
|
||||
namespace CutList.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ namespace CutToLength.Properties {
|
||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CutToLength.Properties.Resources", typeof(Resources).Assembly);
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CutList.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
@@ -8,11 +8,11 @@
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace CutToLength.Properties {
|
||||
namespace CutList.Properties {
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.6.0.0")]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
Before Width: | Height: | Size: 620 B After Width: | Height: | Size: 620 B |
|
Before Width: | Height: | Size: 439 B After Width: | Height: | Size: 439 B |
|
Before Width: | Height: | Size: 438 B After Width: | Height: | Size: 438 B |
@@ -1,9 +1,11 @@
|
||||
namespace CutToLength
|
||||
namespace CutList
|
||||
{
|
||||
public class Tool
|
||||
{
|
||||
public string Name { get; set; }
|
||||
|
||||
public double Kerf { get; set; }
|
||||
|
||||
public bool AllowUserToChange { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
Reference in New Issue
Block a user