├── .gitattributes ├── .gitignore ├── sample_3_4.sln └── sample_3_4 ├── App.config ├── ChildForm.Designer.cs ├── ChildForm.cs ├── ChildForm.resx ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── licenses.licx └── sample_3_4.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/.gitignore -------------------------------------------------------------------------------- /sample_3_4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4.sln -------------------------------------------------------------------------------- /sample_3_4/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/App.config -------------------------------------------------------------------------------- /sample_3_4/ChildForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/ChildForm.Designer.cs -------------------------------------------------------------------------------- /sample_3_4/ChildForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/ChildForm.cs -------------------------------------------------------------------------------- /sample_3_4/ChildForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/ChildForm.resx -------------------------------------------------------------------------------- /sample_3_4/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Form1.Designer.cs -------------------------------------------------------------------------------- /sample_3_4/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Form1.cs -------------------------------------------------------------------------------- /sample_3_4/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Form1.resx -------------------------------------------------------------------------------- /sample_3_4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Program.cs -------------------------------------------------------------------------------- /sample_3_4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sample_3_4/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /sample_3_4/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Properties/Resources.resx -------------------------------------------------------------------------------- /sample_3_4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /sample_3_4/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/Properties/Settings.settings -------------------------------------------------------------------------------- /sample_3_4/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_3_4/sample_3_4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_3_4_start/HEAD/sample_3_4/sample_3_4.csproj --------------------------------------------------------------------------------