Added speech balloon icon

This commit is contained in:
Jaex 2016-08-24 21:00:19 +03:00
parent 3801453154
commit 146f6eca53
5 changed files with 17 additions and 0 deletions

View file

@ -60,6 +60,16 @@ internal Resources() {
} }
} }
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap balloon_box_left {
get {
object obj = ResourceManager.GetObject("balloon_box_left", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Region capture. /// Looks up a localized string similar to Region capture.
/// </summary> /// </summary>

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -336,6 +336,9 @@ private void CreateContextMenu()
case ShapeType.DrawingText: case ShapeType.DrawingText:
img = Resources.layer_shape_text; img = Resources.layer_shape_text;
break; break;
case ShapeType.DrawingSpeechBalloon:
img = Resources.balloon_box_left;
break;
case ShapeType.DrawingStep: case ShapeType.DrawingStep:
img = Resources.counter_reset; img = Resources.counter_reset;
break; break;

View file

@ -196,6 +196,7 @@
<None Include="Resources\prohibition.png" /> <None Include="Resources\prohibition.png" />
<None Include="Resources\cross.png" /> <None Include="Resources\cross.png" />
<None Include="Resources\counter-reset.png" /> <None Include="Resources\counter-reset.png" />
<None Include="Resources\balloon-box-left.png" />
<Content Include="Resources\Crosshair.cur" /> <Content Include="Resources\Crosshair.cur" />
<None Include="Resources\exclamation-button.png" /> <None Include="Resources\exclamation-button.png" />
</ItemGroup> </ItemGroup>