Added sticker icon

This commit is contained in:
Jaex 2018-02-06 11:32:13 +03:00
parent 026e2fa9c9
commit 44a6a884be
5 changed files with 17 additions and 0 deletions

View file

@ -1908,6 +1908,16 @@ internal static string ShapeManager_CursorType {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap stamp {
get {
object obj = ResourceManager.GetObject("stamp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>

View file

@ -732,4 +732,7 @@ Distance: {6:0.00} px / Angle: {7:0.00}°</value>
<data name="image_saturation" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\image-saturation.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="stamp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\stamp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 B

View file

@ -267,6 +267,9 @@ internal void CreateToolbar()
case ShapeType.DrawingImageScreen:
img = Resources.monitor_image;
break;
case ShapeType.DrawingSticker:
img = Resources.stamp;
break;
case ShapeType.DrawingCursor:
img = Resources.cursor;
break;

View file

@ -234,6 +234,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="Resources\stamp.png" />
<None Include="packages.config" />
<None Include="Resources\image-saturation.png" />
<None Include="Resources\image-select.png" />