diff --git a/src/System.Windows.Forms.Design/src/Resources/System/WinForms/Design/MoverGlyph.bmp b/src/System.Windows.Forms.Design/src/Resources/System/WinForms/Design/MoverGlyph.bmp new file mode 100644 index 00000000000..9a4b26593ac Binary files /dev/null and b/src/System.Windows.Forms.Design/src/Resources/System/WinForms/Design/MoverGlyph.bmp differ diff --git a/src/System.Windows.Forms.Design/src/Resources/System/WinForms/Design/MoverGlyph.ico b/src/System.Windows.Forms.Design/src/Resources/System/WinForms/Design/MoverGlyph.ico deleted file mode 100644 index 8adfca864d4..00000000000 Binary files a/src/System.Windows.Forms.Design/src/Resources/System/WinForms/Design/MoverGlyph.ico and /dev/null differ diff --git a/src/System.Windows.Forms.Design/src/System.Windows.Forms.Design.csproj b/src/System.Windows.Forms.Design/src/System.Windows.Forms.Design.csproj index 34c43a4e8ab..116c6e6a71f 100644 --- a/src/System.Windows.Forms.Design/src/System.Windows.Forms.Design.csproj +++ b/src/System.Windows.Forms.Design/src/System.Windows.Forms.Design.csproj @@ -100,7 +100,7 @@ System.Windows.Forms.Design.InheritedGlyph - + System.Windows.Forms.Design.Behavior.MoverGlyph diff --git a/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ContainerSelectorGlyph.cs b/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ContainerSelectorGlyph.cs index a56d86419a5..7f5820f509a 100644 --- a/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ContainerSelectorGlyph.cs +++ b/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/Behavior/ContainerSelectorGlyph.cs @@ -59,7 +59,7 @@ private Bitmap MoveGlyph { if (_glyph is null) { - _glyph = new Icon(typeof(ContainerSelectorGlyph), "MoverGlyph").ToBitmap(); + _glyph = new Bitmap(typeof(ContainerSelectorGlyph), "MoverGlyph"); } return _glyph;