├── Basic_Custom_Controls ├── Custom Controls in CS.sln ├── Custom Controls in CS.v12.suo ├── Custom Controls in CS │ ├── App.config │ ├── ButtonZ.cs │ ├── ButtonsDemo.Designer.cs │ ├── ButtonsDemo.cs │ ├── ButtonsDemo.resx │ ├── CFButton.cs │ ├── CheckBoxZ.cs │ ├── Custom Controls in CS.csproj │ ├── LabelZ.cs │ ├── LabelsDemo.Designer.cs │ ├── LabelsDemo.cs │ ├── LabelsDemo.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── MenuStripZ.cs │ ├── PanelZ.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RadioButtonZ.cs │ ├── Resources │ │ ├── compile.png │ │ ├── openproject.png │ │ ├── save.png │ │ └── saveas.png │ ├── TabControlDemo.Designer.cs │ ├── TabControlDemo.cs │ ├── TabControlDemo.resx │ ├── TabControlZ.cs │ ├── bin │ │ └── Debug │ │ │ ├── Custom Controls in CS.exe │ │ │ ├── Custom Controls in CS.exe.config │ │ │ ├── Custom Controls in CS.pdb │ │ │ ├── Custom Controls in CS.vshost.exe │ │ │ └── Custom Controls in CS.vshost.exe.config │ └── obj │ │ └── Debug │ │ ├── Custom Controls in CS.csproj.FileListAbsolute.txt │ │ ├── Custom Controls in CS.csproj.GenerateResource.Cache │ │ ├── Custom Controls in CS.csprojResolveAssemblyReference.cache │ │ ├── Custom Controls in CS.exe │ │ ├── Custom Controls in CS.pdb │ │ ├── Custom_Controls_in_CS.ButtonsDemo.resources │ │ ├── Custom_Controls_in_CS.LabelsDemo.resources │ │ ├── Custom_Controls_in_CS.MainForm.resources │ │ ├── Custom_Controls_in_CS.Properties.Resources.resources │ │ ├── Custom_Controls_in_CS.TabControlDemo.resources │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Readme.md └── images │ ├── buttonsdemo_customcontrols.png │ ├── customcontrols.png │ ├── labelsdemo_customcontrols.png │ ├── menustripdemo_customcontrols.png │ └── tabcontrolsdemo_customcontrols.png ├── Custom_Windows_Forms ├── CustomWindowsForm.sln ├── CustomWindowsForm.v12.suo ├── CustomWindowsForm │ ├── App.config │ ├── BlackForm.Designer.cs │ ├── BlackForm.cs │ ├── BlackForm.resx │ ├── BlueForm.Designer.cs │ ├── BlueForm.cs │ ├── BlueForm.resx │ ├── ButtonX.cs │ ├── ButtonZ.cs │ ├── CustomWindowsForm.csproj │ ├── Dashboard_Form.Designer.cs │ ├── Dashboard_Form.cs │ ├── Dashboard_Form.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── MenuStripZ.cs │ ├── MinMaxButton.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── Crazy.png │ │ ├── home.png │ │ └── pritam12345.jpg │ ├── ShapedButton.cs │ ├── bin │ │ └── Debug │ │ │ ├── CustomWindowsForm.exe │ │ │ ├── CustomWindowsForm.exe.config │ │ │ ├── CustomWindowsForm.pdb │ │ │ ├── CustomWindowsForm.vshost.exe │ │ │ ├── CustomWindowsForm.vshost.exe.config │ │ │ └── CustomWindowsForm.vshost.exe.manifest │ └── obj │ │ └── Debug │ │ ├── CustomWindowsForm.BlackForm.resources │ │ ├── CustomWindowsForm.BlueForm.resources │ │ ├── CustomWindowsForm.Dashboard_Form.resources │ │ ├── CustomWindowsForm.MainForm.resources │ │ ├── CustomWindowsForm.Properties.Resources.resources │ │ ├── CustomWindowsForm.csproj.FileListAbsolute.txt │ │ ├── CustomWindowsForm.csproj.GenerateResource.Cache │ │ ├── CustomWindowsForm.csprojResolveAssemblyReference.cache │ │ ├── CustomWindowsForm.exe │ │ ├── CustomWindowsForm.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Readme.md └── images │ ├── black_resizable_custom_form.png │ ├── create_custom_form.png │ ├── custom_form_mainform.png │ ├── dashboard_custom_form.png │ └── simple_custom_blue_form.png ├── Microsoft_Office_2013_WinForm_UI ├── DarkWord │ ├── DarkWord.sln │ ├── DarkWord.suo │ ├── DarkWord.v12.suo │ ├── DarkWord │ │ ├── App.config │ │ ├── BackButton.cs │ │ ├── ButtonZ.cs │ │ ├── ControlBox.Designer.cs │ │ ├── ControlBox.cs │ │ ├── ControlBox.resx │ │ ├── DarkWord.csproj │ │ ├── EditorContainer.Designer.cs │ │ ├── EditorContainer.cs │ │ ├── EditorContainer.resx │ │ ├── FileOptionsControl.Designer.cs │ │ ├── FileOptionsControl.cs │ │ ├── FileOptionsControl.resx │ │ ├── HomeControl.Designer.cs │ │ ├── HomeControl.cs │ │ ├── HomeControl.resx │ │ ├── Info_OptionControl.Designer.cs │ │ ├── Info_OptionControl.cs │ │ ├── Info_OptionControl.resx │ │ ├── LoadingForm.Designer.cs │ │ ├── LoadingForm.cs │ │ ├── LoadingForm.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── MinMaxButton.cs │ │ ├── New_OptionControl.Designer.cs │ │ ├── New_OptionControl.cs │ │ ├── New_OptionControl.resx │ │ ├── Open_OptionControl.Designer.cs │ │ ├── Open_OptionControl.cs │ │ ├── Open_OptionControl.resx │ │ ├── OptionButton.cs │ │ ├── PanelX.cs │ │ ├── Print_OptionControl.Designer.cs │ │ ├── Print_OptionControl.cs │ │ ├── Print_OptionControl.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── drop.png │ │ │ ├── index.png │ │ │ ├── paste.png │ │ │ └── save.png │ │ ├── RibbonControl.Designer.cs │ │ ├── RibbonControl.cs │ │ ├── RibbonControl.resx │ │ ├── SaveAs_OptionControl.Designer.cs │ │ ├── SaveAs_OptionControl.cs │ │ ├── SaveAs_OptionControl.resx │ │ ├── Share_OptionControl.Designer.cs │ │ ├── Share_OptionControl.cs │ │ ├── Share_OptionControl.resx │ │ ├── TabButton.cs │ │ ├── TabPanel.cs │ │ ├── TemplatesControl.Designer.cs │ │ ├── TemplatesControl.cs │ │ ├── TemplatesControl.resx │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── DarkWord.exe │ │ │ │ ├── DarkWord.exe.config │ │ │ │ ├── DarkWord.pdb │ │ │ │ ├── DarkWord.vshost.exe │ │ │ │ ├── DarkWord.vshost.exe.config │ │ │ │ ├── DarkWord.vshost.exe.manifest │ │ │ │ ├── Word.exe │ │ │ │ ├── Word.exe.config │ │ │ │ ├── Word.pdb │ │ │ │ ├── Word.vshost.exe.config │ │ │ │ └── Word.vshost.exe.manifest │ │ └── obj │ │ │ └── Debug │ │ │ ├── DarkWord.ControlBox.resources │ │ │ ├── DarkWord.EditorContainer.resources │ │ │ ├── DarkWord.FileOptionsControl.resources │ │ │ ├── DarkWord.HomeControl.resources │ │ │ ├── DarkWord.Info_OptionControl.resources │ │ │ ├── DarkWord.LoadingForm.resources │ │ │ ├── DarkWord.MainForm.resources │ │ │ ├── DarkWord.New_OptionControl.resources │ │ │ ├── DarkWord.Open_OptionControl.resources │ │ │ ├── DarkWord.Print_OptionControl.resources │ │ │ ├── DarkWord.Properties.Resources.resources │ │ │ ├── DarkWord.RibbonControl.resources │ │ │ ├── DarkWord.SaveAs_OptionControl.resources │ │ │ ├── DarkWord.Share_OptionControl.resources │ │ │ ├── DarkWord.TemplatesControl.resources │ │ │ ├── DarkWord.csproj.FileListAbsolute.txt │ │ │ ├── DarkWord.csproj.GenerateResource.Cache │ │ │ ├── DarkWord.csprojResolveAssemblyReference.cache │ │ │ ├── DarkWord.exe │ │ │ ├── DarkWord.pdb │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── Word.ControlBox.resources │ │ │ ├── Word.EditorContainer.resources │ │ │ ├── Word.FileOptionsControl.resources │ │ │ ├── Word.HomeControl.resources │ │ │ ├── Word.Info_OptionControl.resources │ │ │ ├── Word.LoadingForm.resources │ │ │ ├── Word.MainForm.resources │ │ │ ├── Word.New_OptionControl.resources │ │ │ ├── Word.Open_OptionControl.resources │ │ │ ├── Word.Print_OptionControl.resources │ │ │ ├── Word.Properties.Resources.resources │ │ │ ├── Word.RibbonControl.resources │ │ │ ├── Word.SaveAs_OptionControl.resources │ │ │ ├── Word.Share_OptionControl.resources │ │ │ ├── Word.TemplatesControl.resources │ │ │ ├── Word.csproj.FileListAbsolute.txt │ │ │ ├── Word.csproj.GenerateResource.Cache │ │ │ ├── Word.csprojResolveAssemblyReference.cache │ │ │ ├── Word.exe │ │ │ └── Word.pdb │ ├── Readme.md │ └── images │ │ ├── dark_word_file_options.png │ │ ├── dark_word_main.png │ │ ├── dark_word_start.png │ │ └── dark_word_templates.png ├── Excel │ ├── Excel.sln │ ├── Excel.v12.suo │ ├── Excel │ │ ├── App.config │ │ ├── BackButton.cs │ │ ├── ButtonZ.cs │ │ ├── ControlBox.Designer.cs │ │ ├── ControlBox.cs │ │ ├── ControlBox.resx │ │ ├── EditorContainer.Designer.cs │ │ ├── EditorContainer.cs │ │ ├── EditorContainer.resx │ │ ├── Excel.csproj │ │ ├── FileOptionsControl.Designer.cs │ │ ├── FileOptionsControl.cs │ │ ├── FileOptionsControl.resx │ │ ├── HomeControl.Designer.cs │ │ ├── HomeControl.cs │ │ ├── HomeControl.resx │ │ ├── Info_OptionControl.Designer.cs │ │ ├── Info_OptionControl.cs │ │ ├── Info_OptionControl.resx │ │ ├── LoadingForm.Designer.cs │ │ ├── LoadingForm.cs │ │ ├── LoadingForm.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── MinMaxButton.cs │ │ ├── New_OptionControl.Designer.cs │ │ ├── New_OptionControl.cs │ │ ├── New_OptionControl.resx │ │ ├── Open_OptionControl.Designer.cs │ │ ├── Open_OptionControl.cs │ │ ├── Open_OptionControl.resx │ │ ├── OptionButton.cs │ │ ├── PanelX.cs │ │ ├── Print_OptionControl.Designer.cs │ │ ├── Print_OptionControl.cs │ │ ├── Print_OptionControl.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── drop.png │ │ │ ├── index.png │ │ │ ├── paste.png │ │ │ └── save.png │ │ ├── RibbonControl.Designer.cs │ │ ├── RibbonControl.cs │ │ ├── RibbonControl.resx │ │ ├── SaveAs_OptionControl.Designer.cs │ │ ├── SaveAs_OptionControl.cs │ │ ├── SaveAs_OptionControl.resx │ │ ├── Share_OptionControl.Designer.cs │ │ ├── Share_OptionControl.cs │ │ ├── Share_OptionControl.resx │ │ ├── TabButton.cs │ │ ├── TabPanel.cs │ │ ├── TemplatesControl.Designer.cs │ │ ├── TemplatesControl.cs │ │ ├── TemplatesControl.resx │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── Excel.exe │ │ │ │ ├── Excel.exe.config │ │ │ │ ├── Excel.pdb │ │ │ │ ├── Excel.vshost.exe │ │ │ │ ├── Excel.vshost.exe.config │ │ │ │ ├── Excel.vshost.exe.manifest │ │ │ │ ├── Word.exe │ │ │ │ ├── Word.exe.config │ │ │ │ ├── Word.pdb │ │ │ │ ├── Word.vshost.exe.config │ │ │ │ └── Word.vshost.exe.manifest │ │ └── obj │ │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── Excel.ControlBox.resources │ │ │ ├── Excel.EditorContainer.resources │ │ │ ├── Excel.FileOptionsControl.resources │ │ │ ├── Excel.HomeControl.resources │ │ │ ├── Excel.Info_OptionControl.resources │ │ │ ├── Excel.LoadingForm.resources │ │ │ ├── Excel.MainForm.resources │ │ │ ├── Excel.New_OptionControl.resources │ │ │ ├── Excel.Open_OptionControl.resources │ │ │ ├── Excel.Print_OptionControl.resources │ │ │ ├── Excel.Properties.Resources.resources │ │ │ ├── Excel.RibbonControl.resources │ │ │ ├── Excel.SaveAs_OptionControl.resources │ │ │ ├── Excel.Share_OptionControl.resources │ │ │ ├── Excel.TemplatesControl.resources │ │ │ ├── Excel.csproj.FileListAbsolute.txt │ │ │ ├── Excel.csproj.GenerateResource.Cache │ │ │ ├── Excel.csprojResolveAssemblyReference.cache │ │ │ ├── Excel.exe │ │ │ ├── Excel.pdb │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── Word.ControlBox.resources │ │ │ ├── Word.EditorContainer.resources │ │ │ ├── Word.FileOptionsControl.resources │ │ │ ├── Word.HomeControl.resources │ │ │ ├── Word.Info_OptionControl.resources │ │ │ ├── Word.LoadingForm.resources │ │ │ ├── Word.MainForm.resources │ │ │ ├── Word.New_OptionControl.resources │ │ │ ├── Word.Open_OptionControl.resources │ │ │ ├── Word.Print_OptionControl.resources │ │ │ ├── Word.Properties.Resources.resources │ │ │ ├── Word.RibbonControl.resources │ │ │ ├── Word.SaveAs_OptionControl.resources │ │ │ ├── Word.Share_OptionControl.resources │ │ │ ├── Word.TemplatesControl.resources │ │ │ ├── Word.csproj.FileListAbsolute.txt │ │ │ ├── Word.csproj.GenerateResource.Cache │ │ │ ├── Word.csprojResolveAssemblyReference.cache │ │ │ ├── Word.exe │ │ │ └── Word.pdb │ ├── Exel.suo │ ├── Readme.md │ └── images │ │ └── excel_main.png ├── PowerPoint │ ├── PowerPoint.sln │ ├── PowerPoint.suo │ ├── PowerPoint.v12.suo │ ├── PowerPoint │ │ ├── App.config │ │ ├── BackButton.cs │ │ ├── ButtonZ.cs │ │ ├── EditorContainer.Designer.cs │ │ ├── EditorContainer.cs │ │ ├── EditorContainer.resx │ │ ├── FileOptionsControl.Designer.cs │ │ ├── FileOptionsControl.cs │ │ ├── FileOptionsControl.resx │ │ ├── HomeControl.Designer.cs │ │ ├── HomeControl.cs │ │ ├── HomeControl.resx │ │ ├── Info_OptionControl.Designer.cs │ │ ├── Info_OptionControl.cs │ │ ├── Info_OptionControl.resx │ │ ├── LoadingForm.Designer.cs │ │ ├── LoadingForm.cs │ │ ├── LoadingForm.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── MinMaxButton.cs │ │ ├── New_OptionControl.Designer.cs │ │ ├── New_OptionControl.cs │ │ ├── New_OptionControl.resx │ │ ├── Open_OptionControl.Designer.cs │ │ ├── Open_OptionControl.cs │ │ ├── Open_OptionControl.resx │ │ ├── OptionButton.cs │ │ ├── PanelX.cs │ │ ├── PowerPoint.csproj │ │ ├── Print_OptionControl.Designer.cs │ │ ├── Print_OptionControl.cs │ │ ├── Print_OptionControl.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── drop.png │ │ │ ├── index.png │ │ │ ├── paste.png │ │ │ └── save.png │ │ ├── RibbonControl.Designer.cs │ │ ├── RibbonControl.cs │ │ ├── RibbonControl.resx │ │ ├── SaveAs_OptionControl.Designer.cs │ │ ├── SaveAs_OptionControl.cs │ │ ├── SaveAs_OptionControl.resx │ │ ├── Share_OptionControl.Designer.cs │ │ ├── Share_OptionControl.cs │ │ ├── Share_OptionControl.resx │ │ ├── TabButton.cs │ │ ├── TabPanel.cs │ │ ├── TemplatesControl.Designer.cs │ │ ├── TemplatesControl.cs │ │ ├── TemplatesControl.resx │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── PowerPoint.exe │ │ │ │ ├── PowerPoint.exe.config │ │ │ │ ├── PowerPoint.pdb │ │ │ │ ├── PowerPoint.vshost.exe │ │ │ │ ├── PowerPoint.vshost.exe.config │ │ │ │ ├── Word.vshost.exe.config │ │ │ │ └── Word.vshost.exe.manifest │ │ └── obj │ │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── PowerPoint.EditorContainer.resources │ │ │ ├── PowerPoint.FileOptionsControl.resources │ │ │ ├── PowerPoint.HomeControl.resources │ │ │ ├── PowerPoint.Info_OptionControl.resources │ │ │ ├── PowerPoint.LoadingForm.resources │ │ │ ├── PowerPoint.MainForm.resources │ │ │ ├── PowerPoint.New_OptionControl.resources │ │ │ ├── PowerPoint.Open_OptionControl.resources │ │ │ ├── PowerPoint.Print_OptionControl.resources │ │ │ ├── PowerPoint.Properties.Resources.resources │ │ │ ├── PowerPoint.RibbonControl.resources │ │ │ ├── PowerPoint.SaveAs_OptionControl.resources │ │ │ ├── PowerPoint.Share_OptionControl.resources │ │ │ ├── PowerPoint.TemplatesControl.resources │ │ │ ├── PowerPoint.csproj.FileListAbsolute.txt │ │ │ ├── PowerPoint.csproj.GenerateResource.Cache │ │ │ ├── PowerPoint.csprojResolveAssemblyReference.cache │ │ │ ├── PowerPoint.exe │ │ │ ├── PowerPoint.pdb │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── Word.ControlBox.resources │ │ │ ├── Word.EditorContainer.resources │ │ │ ├── Word.FileOptionsControl.resources │ │ │ ├── Word.HomeControl.resources │ │ │ ├── Word.Info_OptionControl.resources │ │ │ ├── Word.LoadingForm.resources │ │ │ ├── Word.MainForm.resources │ │ │ ├── Word.New_OptionControl.resources │ │ │ ├── Word.Open_OptionControl.resources │ │ │ ├── Word.Print_OptionControl.resources │ │ │ ├── Word.Properties.Resources.resources │ │ │ ├── Word.RibbonControl.resources │ │ │ ├── Word.SaveAs_OptionControl.resources │ │ │ ├── Word.Share_OptionControl.resources │ │ │ ├── Word.TemplatesControl.resources │ │ │ ├── Word.csproj.FileListAbsolute.txt │ │ │ ├── Word.csproj.GenerateResource.Cache │ │ │ └── Word.csprojResolveAssemblyReference.cache │ ├── Readme.md │ └── images │ │ ├── powerpoint_file_options.png │ │ ├── powerpoint_main.png │ │ ├── powerpoint_start.png │ │ └── powerpoint_templates.png └── Word │ ├── Readme.md │ ├── Word.sln │ ├── Word.v12.suo │ ├── Word │ ├── App.config │ ├── BackButton.cs │ ├── ButtonZ.cs │ ├── ControlBox.Designer.cs │ ├── ControlBox.cs │ ├── ControlBox.resx │ ├── EditorContainer.Designer.cs │ ├── EditorContainer.cs │ ├── EditorContainer.resx │ ├── FileOptionsControl.Designer.cs │ ├── FileOptionsControl.cs │ ├── FileOptionsControl.resx │ ├── HomeControl.Designer.cs │ ├── HomeControl.cs │ ├── HomeControl.resx │ ├── Info_OptionControl.Designer.cs │ ├── Info_OptionControl.cs │ ├── Info_OptionControl.resx │ ├── LoadingForm.Designer.cs │ ├── LoadingForm.cs │ ├── LoadingForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── MinMaxButton.cs │ ├── New_OptionControl.Designer.cs │ ├── New_OptionControl.cs │ ├── New_OptionControl.resx │ ├── Open_OptionControl.Designer.cs │ ├── Open_OptionControl.cs │ ├── Open_OptionControl.resx │ ├── OptionButton.cs │ ├── PanelX.cs │ ├── Print_OptionControl.Designer.cs │ ├── Print_OptionControl.cs │ ├── Print_OptionControl.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── copy.png │ │ ├── cut.png │ │ ├── drop.png │ │ ├── index.png │ │ ├── paste.png │ │ └── save.png │ ├── RibbonControl.Designer.cs │ ├── RibbonControl.cs │ ├── RibbonControl.resx │ ├── SaveAs_OptionControl.Designer.cs │ ├── SaveAs_OptionControl.cs │ ├── SaveAs_OptionControl.resx │ ├── Share_OptionControl.Designer.cs │ ├── Share_OptionControl.cs │ ├── Share_OptionControl.resx │ ├── TabButton.cs │ ├── TabPanel.cs │ ├── TemplatesControl.Designer.cs │ ├── TemplatesControl.cs │ ├── TemplatesControl.resx │ ├── Word.csproj │ ├── bin │ │ └── Debug │ │ │ ├── Word.exe │ │ │ ├── Word.exe.config │ │ │ ├── Word.pdb │ │ │ ├── Word.vshost.exe │ │ │ ├── Word.vshost.exe.config │ │ │ └── Word.vshost.exe.manifest │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── Word.ControlBox.resources │ │ ├── Word.EditorContainer.resources │ │ ├── Word.FileOptionsControl.resources │ │ ├── Word.HomeControl.resources │ │ ├── Word.Info_OptionControl.resources │ │ ├── Word.LoadingForm.resources │ │ ├── Word.MainForm.resources │ │ ├── Word.New_OptionControl.resources │ │ ├── Word.Open_OptionControl.resources │ │ ├── Word.Print_OptionControl.resources │ │ ├── Word.Properties.Resources.resources │ │ ├── Word.RibbonControl.resources │ │ ├── Word.SaveAs_OptionControl.resources │ │ ├── Word.Share_OptionControl.resources │ │ ├── Word.TemplatesControl.resources │ │ ├── Word.csproj.FileListAbsolute.txt │ │ ├── Word.csproj.GenerateResource.Cache │ │ ├── Word.csprojResolveAssemblyReference.cache │ │ ├── Word.exe │ │ └── Word.pdb │ └── images │ ├── word_file_options.png │ ├── word_main.png │ ├── word_start.png │ └── word_templates.png └── README.md /Basic_Custom_Controls/Custom Controls in CS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS.sln -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS.v12.suo -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/App.config -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/ButtonZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/ButtonZ.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/ButtonsDemo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/ButtonsDemo.Designer.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/ButtonsDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/ButtonsDemo.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/ButtonsDemo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/ButtonsDemo.resx -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/CFButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/CFButton.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/CheckBoxZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/CheckBoxZ.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Custom Controls in CS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Custom Controls in CS.csproj -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/LabelZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/LabelZ.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/LabelsDemo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/LabelsDemo.Designer.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/LabelsDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/LabelsDemo.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/LabelsDemo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/LabelsDemo.resx -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/MainForm.Designer.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/MainForm.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/MainForm.resx -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/MenuStripZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/MenuStripZ.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/PanelZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/PanelZ.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Program.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Properties/Resources.resx -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Properties/Settings.settings -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/RadioButtonZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/RadioButtonZ.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Resources/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Resources/compile.png -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Resources/openproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Resources/openproject.png -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Resources/save.png -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/Resources/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/Resources/saveas.png -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/TabControlDemo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/TabControlDemo.Designer.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/TabControlDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/TabControlDemo.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/TabControlDemo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/TabControlDemo.resx -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/TabControlZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/TabControlZ.cs -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.exe -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.exe.config -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.pdb -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.vshost.exe -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/bin/Debug/Custom Controls in CS.vshost.exe.config -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.exe -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom Controls in CS.pdb -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.ButtonsDemo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.ButtonsDemo.resources -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.LabelsDemo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.LabelsDemo.resources -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.MainForm.resources -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.Properties.Resources.resources -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.TabControlDemo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/Custom_Controls_in_CS.TabControlDemo.resources -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Custom Controls in CS/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Basic_Custom_Controls/Custom Controls in CS/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Basic_Custom_Controls/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/Readme.md -------------------------------------------------------------------------------- /Basic_Custom_Controls/images/buttonsdemo_customcontrols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/images/buttonsdemo_customcontrols.png -------------------------------------------------------------------------------- /Basic_Custom_Controls/images/customcontrols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/images/customcontrols.png -------------------------------------------------------------------------------- /Basic_Custom_Controls/images/labelsdemo_customcontrols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/images/labelsdemo_customcontrols.png -------------------------------------------------------------------------------- /Basic_Custom_Controls/images/menustripdemo_customcontrols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/images/menustripdemo_customcontrols.png -------------------------------------------------------------------------------- /Basic_Custom_Controls/images/tabcontrolsdemo_customcontrols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Basic_Custom_Controls/images/tabcontrolsdemo_customcontrols.png -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm.sln -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm.v12.suo -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/App.config -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/BlackForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/BlackForm.Designer.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/BlackForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/BlackForm.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/BlackForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/BlackForm.resx -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/BlueForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/BlueForm.Designer.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/BlueForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/BlueForm.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/BlueForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/BlueForm.resx -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/ButtonX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/ButtonX.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/ButtonZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/ButtonZ.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/CustomWindowsForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/CustomWindowsForm.csproj -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Dashboard_Form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Dashboard_Form.Designer.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Dashboard_Form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Dashboard_Form.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Dashboard_Form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Dashboard_Form.resx -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/MainForm.Designer.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/MainForm.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/MainForm.resx -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/MenuStripZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/MenuStripZ.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/MinMaxButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/MinMaxButton.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Program.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Properties/Resources.resx -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Properties/Settings.settings -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Resources/Crazy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Resources/Crazy.png -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Resources/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Resources/home.png -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/Resources/pritam12345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/Resources/pritam12345.jpg -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/ShapedButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/ShapedButton.cs -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.exe -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.exe.config -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.pdb -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.vshost.exe -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.vshost.exe.config -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/bin/Debug/CustomWindowsForm.vshost.exe.manifest -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.BlackForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.BlackForm.resources -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.BlueForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.BlueForm.resources -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.Dashboard_Form.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.Dashboard_Form.resources -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.MainForm.resources -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.Properties.Resources.resources -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.exe -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/CustomWindowsForm.pdb -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/CustomWindowsForm/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Custom_Windows_Forms/CustomWindowsForm/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Custom_Windows_Forms/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/Readme.md -------------------------------------------------------------------------------- /Custom_Windows_Forms/images/black_resizable_custom_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/images/black_resizable_custom_form.png -------------------------------------------------------------------------------- /Custom_Windows_Forms/images/create_custom_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/images/create_custom_form.png -------------------------------------------------------------------------------- /Custom_Windows_Forms/images/custom_form_mainform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/images/custom_form_mainform.png -------------------------------------------------------------------------------- /Custom_Windows_Forms/images/dashboard_custom_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/images/dashboard_custom_form.png -------------------------------------------------------------------------------- /Custom_Windows_Forms/images/simple_custom_blue_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Custom_Windows_Forms/images/simple_custom_blue_form.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord.sln -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord.suo -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord.v12.suo -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/App.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/BackButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/BackButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/ButtonZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/ButtonZ.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/ControlBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/ControlBox.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/ControlBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/ControlBox.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/ControlBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/ControlBox.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/DarkWord.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/DarkWord.csproj -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/EditorContainer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/EditorContainer.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/EditorContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/EditorContainer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/EditorContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/EditorContainer.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/FileOptionsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/FileOptionsControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/FileOptionsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/FileOptionsControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/FileOptionsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/FileOptionsControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/HomeControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/HomeControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/HomeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/HomeControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/HomeControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/HomeControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Info_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Info_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Info_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Info_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Info_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Info_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/LoadingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/LoadingForm.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/LoadingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/LoadingForm.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/LoadingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/LoadingForm.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/MainForm.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/MainForm.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/MainForm.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/MinMaxButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/MinMaxButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/New_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/New_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/New_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/New_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/New_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/New_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Open_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Open_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Open_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Open_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Open_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Open_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/OptionButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/OptionButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/PanelX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/PanelX.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Print_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Print_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Print_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Print_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Print_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Print_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Program.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/Resources.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Properties/Settings.settings -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/copy.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/cut.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/drop.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/index.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/paste.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Resources/save.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/RibbonControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/RibbonControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/RibbonControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/RibbonControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/RibbonControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/RibbonControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/SaveAs_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/SaveAs_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/SaveAs_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/SaveAs_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/SaveAs_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/SaveAs_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Share_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Share_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Share_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Share_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Share_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/Share_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TabButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TabButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TabPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TabPanel.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TemplatesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TemplatesControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TemplatesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TemplatesControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TemplatesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/TemplatesControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.vshost.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.vshost.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/DarkWord.vshost.exe.manifest -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.vshost.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/bin/Debug/Word.vshost.exe.manifest -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.ControlBox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.ControlBox.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.EditorContainer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.EditorContainer.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.FileOptionsControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.FileOptionsControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.HomeControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.HomeControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Info_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Info_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.LoadingForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.LoadingForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.MainForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.New_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.New_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Open_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Open_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Print_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Print_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Properties.Resources.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.RibbonControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.RibbonControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.SaveAs_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.SaveAs_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Share_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.Share_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.TemplatesControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.TemplatesControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DarkWord.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.ControlBox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.ControlBox.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.EditorContainer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.EditorContainer.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.FileOptionsControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.FileOptionsControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.HomeControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.HomeControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Info_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Info_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.LoadingForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.LoadingForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.MainForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.New_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.New_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Open_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Open_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Print_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Print_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Properties.Resources.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.RibbonControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.RibbonControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.SaveAs_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.SaveAs_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Share_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.Share_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.TemplatesControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.TemplatesControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/DarkWord/obj/Debug/Word.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/Readme.md -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/images/dark_word_file_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/images/dark_word_file_options.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/images/dark_word_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/images/dark_word_main.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/images/dark_word_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/images/dark_word_start.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/DarkWord/images/dark_word_templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/DarkWord/images/dark_word_templates.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel.sln -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel.v12.suo -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/App.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/BackButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/BackButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/ButtonZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/ButtonZ.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/ControlBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/ControlBox.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/ControlBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/ControlBox.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/ControlBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/ControlBox.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/EditorContainer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/EditorContainer.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/EditorContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/EditorContainer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/EditorContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/EditorContainer.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Excel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Excel.csproj -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/FileOptionsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/FileOptionsControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/FileOptionsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/FileOptionsControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/FileOptionsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/FileOptionsControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/HomeControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/HomeControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/HomeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/HomeControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/HomeControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/HomeControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Info_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Info_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Info_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Info_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Info_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Info_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/LoadingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/LoadingForm.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/LoadingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/LoadingForm.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/LoadingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/LoadingForm.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/MainForm.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/MainForm.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/MainForm.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/MinMaxButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/MinMaxButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/New_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/New_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/New_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/New_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/New_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/New_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Open_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Open_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Open_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Open_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Open_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Open_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/OptionButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/OptionButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/PanelX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/PanelX.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Print_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Print_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Print_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Print_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Print_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Print_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Program.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/Resources.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Properties/Settings.settings -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/copy.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/cut.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/drop.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/index.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/paste.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Resources/save.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/RibbonControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/RibbonControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/RibbonControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/RibbonControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/RibbonControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/RibbonControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/SaveAs_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/SaveAs_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/SaveAs_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/SaveAs_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/SaveAs_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/SaveAs_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Share_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Share_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Share_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Share_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/Share_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/Share_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/TabButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/TabButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/TabPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/TabPanel.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/TemplatesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/TemplatesControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/TemplatesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/TemplatesControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/TemplatesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/TemplatesControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.vshost.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.vshost.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Excel.vshost.exe.manifest -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.vshost.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/bin/Debug/Word.vshost.exe.manifest -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.ControlBox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.ControlBox.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.EditorContainer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.EditorContainer.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.FileOptionsControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.FileOptionsControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.HomeControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.HomeControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Info_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Info_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.LoadingForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.LoadingForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.MainForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.New_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.New_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Open_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Open_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Print_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Print_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Properties.Resources.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.RibbonControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.RibbonControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.SaveAs_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.SaveAs_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Share_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.Share_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.TemplatesControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.TemplatesControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Excel.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.ControlBox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.ControlBox.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.EditorContainer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.EditorContainer.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.FileOptionsControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.FileOptionsControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.HomeControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.HomeControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Info_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Info_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.LoadingForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.LoadingForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.MainForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.New_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.New_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Open_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Open_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Print_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Print_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Properties.Resources.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.RibbonControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.RibbonControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.SaveAs_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.SaveAs_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Share_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.Share_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.TemplatesControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.TemplatesControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Excel/obj/Debug/Word.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Exel.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Exel.suo -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/Readme.md -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Excel/images/excel_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Excel/images/excel_main.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint.sln -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint.suo -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint.v12.suo -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/App.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/BackButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/BackButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/ButtonZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/ButtonZ.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/EditorContainer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/EditorContainer.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/EditorContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/EditorContainer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/EditorContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/EditorContainer.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/FileOptionsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/FileOptionsControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/FileOptionsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/FileOptionsControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/FileOptionsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/FileOptionsControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/HomeControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/HomeControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/HomeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/HomeControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/HomeControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/HomeControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Info_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Info_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Info_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Info_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Info_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Info_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/LoadingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/LoadingForm.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/LoadingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/LoadingForm.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/LoadingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/LoadingForm.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/MainForm.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/MainForm.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/MainForm.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/MinMaxButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/MinMaxButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/New_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/New_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/New_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/New_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/New_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/New_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Open_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Open_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Open_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Open_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Open_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Open_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/OptionButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/OptionButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/PanelX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/PanelX.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/PowerPoint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/PowerPoint.csproj -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Print_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Print_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Print_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Print_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Print_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Print_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Program.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/Resources.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Properties/Settings.settings -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/copy.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/cut.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/drop.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/index.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/paste.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Resources/save.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/RibbonControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/RibbonControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/RibbonControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/RibbonControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/RibbonControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/RibbonControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/SaveAs_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/SaveAs_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/SaveAs_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/SaveAs_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/SaveAs_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/SaveAs_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Share_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Share_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Share_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Share_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Share_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/Share_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TabButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TabButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TabPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TabPanel.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TemplatesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TemplatesControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TemplatesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TemplatesControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TemplatesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/TemplatesControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.vshost.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/PowerPoint.vshost.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/Word.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/Word.vshost.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/Word.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/bin/Debug/Word.vshost.exe.manifest -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.EditorContainer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.EditorContainer.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.FileOptionsControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.FileOptionsControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.HomeControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.HomeControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Info_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Info_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.LoadingForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.LoadingForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.MainForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.New_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.New_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Open_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Open_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Print_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Print_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Properties.Resources.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.RibbonControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.RibbonControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.SaveAs_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.SaveAs_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Share_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.Share_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.TemplatesControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.TemplatesControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/PowerPoint.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.ControlBox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.ControlBox.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.EditorContainer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.EditorContainer.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.FileOptionsControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.FileOptionsControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.HomeControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.HomeControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Info_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Info_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.LoadingForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.LoadingForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.MainForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.New_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.New_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Open_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Open_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Print_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Print_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Properties.Resources.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.RibbonControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.RibbonControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.SaveAs_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.SaveAs_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Share_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.Share_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.TemplatesControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.TemplatesControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/PowerPoint/obj/Debug/Word.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/Readme.md -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/images/powerpoint_file_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/images/powerpoint_file_options.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/images/powerpoint_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/images/powerpoint_main.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/images/powerpoint_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/images/powerpoint_start.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/PowerPoint/images/powerpoint_templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/PowerPoint/images/powerpoint_templates.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Readme.md -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word.sln -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word.v12.suo -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/App.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/BackButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/BackButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/ButtonZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/ButtonZ.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/ControlBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/ControlBox.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/ControlBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/ControlBox.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/ControlBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/ControlBox.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/EditorContainer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/EditorContainer.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/EditorContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/EditorContainer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/EditorContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/EditorContainer.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/FileOptionsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/FileOptionsControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/FileOptionsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/FileOptionsControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/FileOptionsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/FileOptionsControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/HomeControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/HomeControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/HomeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/HomeControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/HomeControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/HomeControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Info_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Info_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Info_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Info_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Info_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Info_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/LoadingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/LoadingForm.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/LoadingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/LoadingForm.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/LoadingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/LoadingForm.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/MainForm.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/MainForm.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/MainForm.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/MinMaxButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/MinMaxButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/New_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/New_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/New_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/New_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/New_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/New_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Open_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Open_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Open_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Open_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Open_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Open_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/OptionButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/OptionButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/PanelX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/PanelX.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Print_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Print_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Print_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Print_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Print_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Print_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Program.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/Resources.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Properties/Settings.settings -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/copy.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/cut.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/drop.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/index.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/paste.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Resources/save.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/RibbonControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/RibbonControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/RibbonControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/RibbonControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/RibbonControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/RibbonControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/SaveAs_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/SaveAs_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/SaveAs_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/SaveAs_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/SaveAs_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/SaveAs_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Share_OptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Share_OptionControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Share_OptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Share_OptionControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Share_OptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Share_OptionControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/TabButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/TabButton.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/TabPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/TabPanel.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/TemplatesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/TemplatesControl.Designer.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/TemplatesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/TemplatesControl.cs -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/TemplatesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/TemplatesControl.resx -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/Word.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/Word.csproj -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.vshost.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.vshost.exe.config -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/bin/Debug/Word.vshost.exe.manifest -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.ControlBox.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.ControlBox.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.EditorContainer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.EditorContainer.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.FileOptionsControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.FileOptionsControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.HomeControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.HomeControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Info_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Info_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.LoadingForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.LoadingForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.MainForm.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.New_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.New_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Open_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Open_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Print_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Print_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Properties.Resources.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.RibbonControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.RibbonControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.SaveAs_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.SaveAs_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Share_OptionControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.Share_OptionControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.TemplatesControl.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.TemplatesControl.resources -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.exe -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/Word/obj/Debug/Word.pdb -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/images/word_file_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/images/word_file_options.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/images/word_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/images/word_main.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/images/word_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/images/word_start.png -------------------------------------------------------------------------------- /Microsoft_Office_2013_WinForm_UI/Word/images/word_templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/Microsoft_Office_2013_WinForm_UI/Word/images/word_templates.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamzope/custom_controls_csharp/HEAD/README.md --------------------------------------------------------------------------------