├── .gitattributes ├── .gitignore ├── sample_2_7.sln └── sample_2_7 ├── 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 └── sample_2_7.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/.gitignore -------------------------------------------------------------------------------- /sample_2_7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7.sln -------------------------------------------------------------------------------- /sample_2_7/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/App.config -------------------------------------------------------------------------------- /sample_2_7/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Form1.Designer.cs -------------------------------------------------------------------------------- /sample_2_7/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Form1.cs -------------------------------------------------------------------------------- /sample_2_7/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Form1.resx -------------------------------------------------------------------------------- /sample_2_7/Placeholder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Placeholder.Designer.cs -------------------------------------------------------------------------------- /sample_2_7/Placeholder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Placeholder.cs -------------------------------------------------------------------------------- /sample_2_7/Placeholder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Placeholder.resx -------------------------------------------------------------------------------- /sample_2_7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Program.cs -------------------------------------------------------------------------------- /sample_2_7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sample_2_7/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /sample_2_7/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Properties/Resources.resx -------------------------------------------------------------------------------- /sample_2_7/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /sample_2_7/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/Properties/Settings.settings -------------------------------------------------------------------------------- /sample_2_7/sample_2_7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Dev_express_sample_2_7/HEAD/sample_2_7/sample_2_7.csproj --------------------------------------------------------------------------------