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