Skip to content

Commit

Permalink
- rename namespace to In.Sontx.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sontx committed Aug 7, 2016
1 parent ac72916 commit 776b1fa
Show file tree
Hide file tree
Showing 16 changed files with 50 additions and 61 deletions.
2 changes: 1 addition & 1 deletion SimpleDataGridViewPaging/DataGridViewPaging.Designer.cs

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

4 changes: 2 additions & 2 deletions SimpleDataGridViewPaging/DataGridViewPaging.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using SimpleDataGridViewPaging.Exceptions;
using In.Sontx.SimpleDataGridViewPaging.Exceptions;
using System;
using System.ComponentModel;
using System.Data.Common;
using System.Windows.Forms;

namespace SimpleDataGridViewPaging
namespace In.Sontx.SimpleDataGridViewPaging
{
/// <summary>
/// The <see cref="UserControl"/> contains <see cref="System.Windows.Forms.DataGridView"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace SimpleDataGridViewPaging.Exceptions
namespace In.Sontx.SimpleDataGridViewPaging.Exceptions
{
public class QuantityRangeException : RuntimeException
{
Expand Down
2 changes: 1 addition & 1 deletion SimpleDataGridViewPaging/Exceptions/RuntimeException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace SimpleDataGridViewPaging.Exceptions
namespace In.Sontx.SimpleDataGridViewPaging.Exceptions
{
public abstract class RuntimeException : Exception
{
Expand Down
2 changes: 1 addition & 1 deletion SimpleDataGridViewPaging/RequestQueryDataEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace SimpleDataGridViewPaging
namespace In.Sontx.SimpleDataGridViewPaging
{
/// <summary>
/// Represents the method that will handle an event that request a query data.
Expand Down
2 changes: 1 addition & 1 deletion SimpleDataGridViewPaging/SimpleDataGridViewPaging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ProjectGuid>{8784A91A-10E1-4F2D-A233-EAF60275F2F0}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SimpleDataGridViewPaging</RootNamespace>
<RootNamespace>In.Sontx.SimpleDataGridViewPaging</RootNamespace>
<AssemblyName>SimpleDataGridViewPaging</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
Expand Down
6 changes: 3 additions & 3 deletions Test/Form1.Designer.cs

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

4 changes: 2 additions & 2 deletions Test/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Windows.Forms;
using System.Data.SQLite;

namespace Test
namespace In.Sontx.Test
{
public partial class Form1 : Form
{
Expand All @@ -27,7 +27,7 @@ public Form1()
}
}

private void DataGridViewPaging1_RequestQueryData(object sender, SimpleDataGridViewPaging.RequestQueryDataEventArgs e)
private void DataGridViewPaging1_RequestQueryData(object sender, In.Sontx.SimpleDataGridViewPaging.RequestQueryDataEventArgs e)
{
// query data and then set result to display
using (var command = connection.CreateCommand())
Expand Down
6 changes: 3 additions & 3 deletions Test/Form2.Designer.cs

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

2 changes: 1 addition & 1 deletion Test/Form2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Data.SQLite;
using System.Windows.Forms;

namespace Test
namespace In.Sontx.Test
{
public partial class Form2 : Form
{
Expand Down
6 changes: 3 additions & 3 deletions Test/Form3.Designer.cs

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

2 changes: 1 addition & 1 deletion Test/Form3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Data.SQLite;
using System.Windows.Forms;

namespace Test
namespace In.Sontx.Test
{
public partial class Form3 : Form
{
Expand Down
2 changes: 1 addition & 1 deletion Test/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Test
namespace In.Sontx.Test
{
static class Program
{
Expand Down
44 changes: 18 additions & 26 deletions Test/Properties/Resources.Designer.cs

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

22 changes: 9 additions & 13 deletions Test/Properties/Settings.Designer.cs

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

3 changes: 2 additions & 1 deletion Test/Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ProjectGuid>{2CC3510C-DB0B-4D64-B3DC-221D32A8DD45}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Test</RootNamespace>
<RootNamespace>In.Sontx.Test</RootNamespace>
<AssemblyName>Test</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
Expand Down Expand Up @@ -86,6 +86,7 @@
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="chinook.db">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand Down

0 comments on commit 776b1fa

Please # to comment.