├── .gitignore ├── .gitmodules ├── Change Log.md ├── LICENSE.md ├── README.md └── src ├── BorderSkin.sln └── BorderSkin ├── BorderSkin.csproj ├── BorderSkinning ├── BorderSkinningManager.cs ├── DefaultNewWindowHandler.cs ├── Explorer │ ├── ExplorerNewWindowHandler.cs │ ├── ExplorerWindows.cs │ ├── Forms │ │ ├── ExplorerSettingsUpdateHandler.cs │ │ ├── ExplorerSkinWindow.cs │ │ ├── LayeredBreadcrumbs.cs │ │ ├── LayeredButtonWithSkinElement.cs │ │ └── SkinList.cs │ └── Skin │ │ ├── Constants.cs │ │ └── ExplorerSkin.cs ├── Forms │ ├── CloseButton.cs │ ├── HelpButton.cs │ ├── MaximizeButton.cs │ ├── MinimizeButton.cs │ ├── SkinBorder.Designer.cs │ ├── SkinBorder.cs │ ├── SkinBorder.resx │ └── WindowFunctions.cs ├── Handlers │ ├── ExplorerSkinWndowControlsHandler.cs │ ├── LayeredControlsChangeHandler.cs │ ├── ProcessExitHandler.cs │ ├── SettingsUpdater.cs │ ├── SkinWindowButtonsHandler.cs │ ├── SkinWindowControlsChangeHandler.cs │ └── WindowEventHandler.cs ├── INewWindowHandler.cs ├── PreventShutdownSkinningNewWindowHandler.cs ├── Skin │ ├── ColorScheme.cs │ ├── IWindowBorderSkinLoader.cs │ ├── Ini │ │ └── SkinIniLoader.cs │ ├── SkinConstants.cs │ ├── SkinElement.cs │ ├── TrueTransparency │ │ └── TrueTransparencySkinIDs.cs │ ├── WindowBorderSkin.cs │ └── WindowBorderSkinProvider.cs └── SkinableWindowBorder.cs ├── ErrorHandling ├── ErrorDialogue.Designer.cs ├── ErrorDialogue.cs ├── ErrorDialogue.resx └── ErrorManager.cs ├── Execlusion ├── ExclusionDialogue.Designer.cs ├── ExclusionDialogue.cs ├── ExclusionDialogue.resx ├── ExclusionManagerControl.Designer.cs ├── ExclusionManagerControl.cs ├── ExclusionManagerControl.resx ├── ExclusionNewWindowHandler.cs ├── ExecludeList.cs ├── ExecludedWindow.cs └── InclusionNewWindowHandler.cs ├── Language └── LanguageFile.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Resources ├── AddImage.gif ├── BorderSkinIcon.ico ├── BorderSkinImage.jpg ├── CancelImage.png ├── CloseImage.png ├── EditImage.png ├── ErrorImage.png ├── ExitAppImage.png ├── InAppResources │ ├── ExcludeList.ini │ ├── IncludeList.ini │ ├── Language │ │ ├── Deutsch 2.ini │ │ ├── Dutch 1.ini │ │ ├── English.ini │ │ ├── Français.ini │ │ ├── Vietnamese.ini │ │ ├── العربية.ini │ │ └── ┴c┼لجججف.ini │ ├── Settings.ini │ └── Themes │ │ ├── Aero Explorer RightToLeft │ │ ├── Borders │ │ │ ├── BottomMaskOut.png │ │ │ ├── MaximizedTop.png │ │ │ ├── TitleBackground.png │ │ │ ├── Top.png │ │ │ ├── TopMaskOut.png │ │ │ ├── bottom.png │ │ │ ├── left.png │ │ │ └── right.png │ │ ├── Buttons │ │ │ ├── AddressBar-Background.png │ │ │ ├── Box-Button.png │ │ │ ├── Box.png │ │ │ ├── BreadCrumb-Button.png │ │ │ ├── DownArrow-Button.png │ │ │ ├── History-Button.png │ │ │ ├── Max-Button.png │ │ │ ├── Min-Button.png │ │ │ ├── NavigateBack-Button.png │ │ │ ├── NavigateForeward-Button.png │ │ │ ├── Refresh-Button.png │ │ │ ├── Res-Button.png │ │ │ ├── RightArrow-button.png │ │ │ ├── Search-Button.png │ │ │ ├── close-button.png │ │ │ ├── close2-button.png │ │ │ └── help-button.png │ │ ├── Reflection.png │ │ └── skin.ini │ │ ├── Aero Explorer │ │ ├── Borders │ │ │ ├── BottomMaskOut.png │ │ │ ├── MaximizedTop.png │ │ │ ├── Top.png │ │ │ ├── TopMaskOut.png │ │ │ ├── bottom.png │ │ │ ├── left.png │ │ │ └── right.png │ │ ├── Buttons │ │ │ ├── AddressBar-Background.png │ │ │ ├── Box-Button.png │ │ │ ├── Box.png │ │ │ ├── BreadCrumb-Button.png │ │ │ ├── DownArrow-Button.png │ │ │ ├── History-Button.png │ │ │ ├── Max-Button.png │ │ │ ├── Min-Button.png │ │ │ ├── NavigateBack-Button.png │ │ │ ├── NavigateForeward-Button.png │ │ │ ├── RecentIcons.png │ │ │ ├── Refresh-Button.png │ │ │ ├── Res-Button.png │ │ │ ├── Search-Button.png │ │ │ ├── close-button.png │ │ │ ├── close2-button.png │ │ │ └── help-button.png │ │ ├── Reflection.png │ │ └── skin.ini │ │ ├── Aero │ │ ├── Borders │ │ │ ├── Bottom.png │ │ │ ├── BottomMaskOut.png │ │ │ ├── CaptionBackground.png │ │ │ ├── MaximizedTop.png │ │ │ ├── Top.png │ │ │ ├── TopMaskOut.png │ │ │ ├── left.png │ │ │ └── right.png │ │ ├── Buttons │ │ │ ├── close-button.png │ │ │ ├── close2-button.png │ │ │ ├── help-button.png │ │ │ ├── max-button.png │ │ │ ├── min-button.png │ │ │ └── res-Button.png │ │ ├── Reflection.png │ │ └── skin.ini │ │ ├── Sharp 2.1 Explorer │ │ ├── About.txt │ │ ├── Borders │ │ │ ├── BottomMaskOut.png │ │ │ ├── CaptionBackground.png │ │ │ ├── MaximizedTop.png │ │ │ ├── Top.png │ │ │ ├── TopMaskOut.png │ │ │ ├── bottom.png │ │ │ ├── left.png │ │ │ └── right.png │ │ ├── Buttons │ │ │ ├── AddressBar-Background.png │ │ │ ├── Box-Button.png │ │ │ ├── Box.png │ │ │ ├── BreadCrumb-Button.png │ │ │ ├── DownArrow-Button.png │ │ │ ├── History-Button.png │ │ │ ├── Max-Button.png │ │ │ ├── Min-Button.png │ │ │ ├── NavigateBack-Button.png │ │ │ ├── NavigateForeward-Button.png │ │ │ ├── RecentIcons.png │ │ │ ├── Refresh-Button.png │ │ │ ├── Res-Button.png │ │ │ ├── Search-Button.png │ │ │ ├── close-button.png │ │ │ ├── close2-button.png │ │ │ └── help-button.png │ │ ├── Reflection.png │ │ └── skin.ini │ │ └── Sharp 2.1 │ │ ├── About.txt │ │ ├── Borders │ │ ├── Bottom.png │ │ ├── BottomMaskOut.png │ │ ├── CaptionBackground.png │ │ ├── MaximizedTop.png │ │ ├── Top.png │ │ ├── TopMaskOut.png │ │ ├── left.png │ │ └── right.png │ │ ├── Buttons │ │ ├── close-button.png │ │ ├── close2-button.png │ │ ├── help-button.png │ │ ├── max-button.png │ │ ├── min-button.png │ │ └── res-Button.png │ │ ├── Reflection.png │ │ └── skin.ini ├── InfoImage.png ├── OKImage.png ├── RefreshImage.png ├── RemoveAllImage.png └── RemoveImage.png ├── Settings ├── BorderSkinningManagerSettingsUpdater.cs ├── IconButton.cs ├── Settings.cs ├── SettingsDialogue.Designer.cs ├── SettingsDialogue.cs └── SettingsDialogue.resx └── Utilities ├── ExtendedFileInfo.cs ├── InfoFile.cs ├── IniFile.cs └── ShellClassID.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/.gitmodules -------------------------------------------------------------------------------- /Change Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/Change Log.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/README.md -------------------------------------------------------------------------------- /src/BorderSkin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin.sln -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkin.csproj -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/BorderSkinningManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/BorderSkinningManager.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/DefaultNewWindowHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/DefaultNewWindowHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/ExplorerNewWindowHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/ExplorerNewWindowHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/ExplorerWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/ExplorerWindows.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/Forms/ExplorerSettingsUpdateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/Forms/ExplorerSettingsUpdateHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/Forms/ExplorerSkinWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/Forms/ExplorerSkinWindow.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/Forms/LayeredBreadcrumbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/Forms/LayeredBreadcrumbs.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/Forms/LayeredButtonWithSkinElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/Forms/LayeredButtonWithSkinElement.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/Forms/SkinList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/Forms/SkinList.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/Skin/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/Skin/Constants.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Explorer/Skin/ExplorerSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Explorer/Skin/ExplorerSkin.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Forms/CloseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Forms/CloseButton.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Forms/HelpButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Forms/HelpButton.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Forms/MaximizeButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Forms/MaximizeButton.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Forms/MinimizeButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Forms/MinimizeButton.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Forms/SkinBorder.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Forms/SkinBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Forms/SkinBorder.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Forms/SkinBorder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Forms/SkinBorder.resx -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Forms/WindowFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Forms/WindowFunctions.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Handlers/ExplorerSkinWndowControlsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Handlers/ExplorerSkinWndowControlsHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Handlers/LayeredControlsChangeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Handlers/LayeredControlsChangeHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Handlers/ProcessExitHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Handlers/ProcessExitHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Handlers/SettingsUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Handlers/SettingsUpdater.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Handlers/SkinWindowButtonsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Handlers/SkinWindowButtonsHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Handlers/SkinWindowControlsChangeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Handlers/SkinWindowControlsChangeHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Handlers/WindowEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Handlers/WindowEventHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/INewWindowHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/INewWindowHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/PreventShutdownSkinningNewWindowHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/PreventShutdownSkinningNewWindowHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Skin/ColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Skin/ColorScheme.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Skin/IWindowBorderSkinLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Skin/IWindowBorderSkinLoader.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Skin/Ini/SkinIniLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Skin/Ini/SkinIniLoader.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Skin/SkinConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Skin/SkinConstants.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Skin/SkinElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Skin/SkinElement.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Skin/TrueTransparency/TrueTransparencySkinIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Skin/TrueTransparency/TrueTransparencySkinIDs.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Skin/WindowBorderSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Skin/WindowBorderSkin.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/Skin/WindowBorderSkinProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/Skin/WindowBorderSkinProvider.cs -------------------------------------------------------------------------------- /src/BorderSkin/BorderSkinning/SkinableWindowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/BorderSkinning/SkinableWindowBorder.cs -------------------------------------------------------------------------------- /src/BorderSkin/ErrorHandling/ErrorDialogue.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/ErrorHandling/ErrorDialogue.Designer.cs -------------------------------------------------------------------------------- /src/BorderSkin/ErrorHandling/ErrorDialogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/ErrorHandling/ErrorDialogue.cs -------------------------------------------------------------------------------- /src/BorderSkin/ErrorHandling/ErrorDialogue.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/ErrorHandling/ErrorDialogue.resx -------------------------------------------------------------------------------- /src/BorderSkin/ErrorHandling/ErrorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/ErrorHandling/ErrorManager.cs -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExclusionDialogue.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExclusionDialogue.Designer.cs -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExclusionDialogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExclusionDialogue.cs -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExclusionDialogue.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExclusionDialogue.resx -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExclusionManagerControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExclusionManagerControl.Designer.cs -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExclusionManagerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExclusionManagerControl.cs -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExclusionManagerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExclusionManagerControl.resx -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExclusionNewWindowHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExclusionNewWindowHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExecludeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExecludeList.cs -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/ExecludedWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/ExecludedWindow.cs -------------------------------------------------------------------------------- /src/BorderSkin/Execlusion/InclusionNewWindowHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Execlusion/InclusionNewWindowHandler.cs -------------------------------------------------------------------------------- /src/BorderSkin/Language/LanguageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Language/LanguageFile.cs -------------------------------------------------------------------------------- /src/BorderSkin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Program.cs -------------------------------------------------------------------------------- /src/BorderSkin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BorderSkin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/BorderSkin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Properties/Resources.resx -------------------------------------------------------------------------------- /src/BorderSkin/Resources/AddImage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/AddImage.gif -------------------------------------------------------------------------------- /src/BorderSkin/Resources/BorderSkinIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/BorderSkinIcon.ico -------------------------------------------------------------------------------- /src/BorderSkin/Resources/BorderSkinImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/BorderSkinImage.jpg -------------------------------------------------------------------------------- /src/BorderSkin/Resources/CancelImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/CancelImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/CloseImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/CloseImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/EditImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/EditImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/ErrorImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/ErrorImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/ExitAppImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/ExitAppImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/ExcludeList.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/ExcludeList.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/IncludeList.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Language/Deutsch 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Language/Deutsch 2.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Language/Dutch 1.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Language/Dutch 1.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Language/English.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Language/English.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Language/Français.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Language/Français.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Language/Vietnamese.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Language/Vietnamese.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Language/العربية.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Language/العربية.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Language/┴c┼لجججف.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Language/┴c┼لجججف.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Settings.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/BottomMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/BottomMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/MaximizedTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/MaximizedTop.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/TitleBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/TitleBackground.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/Top.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/TopMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/TopMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/bottom.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/left.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Borders/right.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/AddressBar-Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/AddressBar-Background.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Box-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Box-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Box.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/BreadCrumb-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/BreadCrumb-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/DownArrow-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/DownArrow-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/History-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/History-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Max-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Max-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Min-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Min-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/NavigateBack-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/NavigateBack-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/NavigateForeward-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/NavigateForeward-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Refresh-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Refresh-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Res-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Res-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/RightArrow-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/RightArrow-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Search-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/Search-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/close-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/close2-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/close2-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/help-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Buttons/help-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/Reflection.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer RightToLeft/skin.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/BottomMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/BottomMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/MaximizedTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/MaximizedTop.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/Top.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/TopMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/TopMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/bottom.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/left.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Borders/right.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/AddressBar-Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/AddressBar-Background.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Box-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Box-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Box.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/BreadCrumb-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/BreadCrumb-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/DownArrow-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/DownArrow-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/History-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/History-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Max-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Max-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Min-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Min-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/NavigateBack-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/NavigateBack-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/NavigateForeward-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/NavigateForeward-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/RecentIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/RecentIcons.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Refresh-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Refresh-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Res-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Res-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Search-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/Search-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/close-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/close2-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/close2-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/help-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Buttons/help-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/Reflection.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero Explorer/skin.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/Bottom.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/BottomMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/BottomMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/CaptionBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/CaptionBackground.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/MaximizedTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/MaximizedTop.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/Top.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/TopMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/TopMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/left.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Borders/right.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/close-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/close2-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/close2-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/help-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/help-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/max-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/max-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/min-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/min-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/res-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Buttons/res-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/Reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/Reflection.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Aero/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Aero/skin.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/About.txt -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/BottomMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/BottomMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/CaptionBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/CaptionBackground.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/MaximizedTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/MaximizedTop.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/Top.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/TopMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/TopMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/bottom.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/left.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Borders/right.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/AddressBar-Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/AddressBar-Background.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Box-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Box-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Box.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/BreadCrumb-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/BreadCrumb-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/DownArrow-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/DownArrow-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/History-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/History-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Max-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Max-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Min-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Min-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/NavigateBack-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/NavigateBack-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/NavigateForeward-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/NavigateForeward-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/RecentIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/RecentIcons.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Refresh-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Refresh-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Res-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Res-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Search-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/Search-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/close-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/close2-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/close2-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/help-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Buttons/help-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/Reflection.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1 Explorer/skin.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/About.txt -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/Bottom.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/BottomMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/BottomMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/CaptionBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/CaptionBackground.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/MaximizedTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/MaximizedTop.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/Top.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/TopMaskOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/TopMaskOut.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/left.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Borders/right.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/close-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/close2-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/close2-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/help-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/help-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/max-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/max-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/min-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/min-button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/res-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Buttons/res-Button.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/Reflection.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InAppResources/Themes/Sharp 2.1/skin.ini -------------------------------------------------------------------------------- /src/BorderSkin/Resources/InfoImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/InfoImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/OKImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/OKImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/RefreshImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/RefreshImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/RemoveAllImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/RemoveAllImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Resources/RemoveImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Resources/RemoveImage.png -------------------------------------------------------------------------------- /src/BorderSkin/Settings/BorderSkinningManagerSettingsUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Settings/BorderSkinningManagerSettingsUpdater.cs -------------------------------------------------------------------------------- /src/BorderSkin/Settings/IconButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Settings/IconButton.cs -------------------------------------------------------------------------------- /src/BorderSkin/Settings/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Settings/Settings.cs -------------------------------------------------------------------------------- /src/BorderSkin/Settings/SettingsDialogue.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Settings/SettingsDialogue.Designer.cs -------------------------------------------------------------------------------- /src/BorderSkin/Settings/SettingsDialogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Settings/SettingsDialogue.cs -------------------------------------------------------------------------------- /src/BorderSkin/Settings/SettingsDialogue.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Settings/SettingsDialogue.resx -------------------------------------------------------------------------------- /src/BorderSkin/Utilities/ExtendedFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Utilities/ExtendedFileInfo.cs -------------------------------------------------------------------------------- /src/BorderSkin/Utilities/InfoFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Utilities/InfoFile.cs -------------------------------------------------------------------------------- /src/BorderSkin/Utilities/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Utilities/IniFile.cs -------------------------------------------------------------------------------- /src/BorderSkin/Utilities/ShellClassID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedkomalo/BorderSkin/HEAD/src/BorderSkin/Utilities/ShellClassID.cs --------------------------------------------------------------------------------