Added icon to cut out tool

This commit is contained in:
Jaex 2022-08-18 17:10:51 +03:00
parent 0e6194ce83
commit bed141f235
5 changed files with 19 additions and 0 deletions

View file

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

View file

@ -811,4 +811,7 @@ X: {4} Y: {5}</value>
<data name="CutOutEffectType" xml:space="preserve">
<value>Cut out effect</value>
</data>
<data name="table_delete_column" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\table-delete-column.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: 660 B

View file

@ -306,6 +306,9 @@ internal void CreateToolbar()
case ShapeType.ToolCrop:
img = Resources.image_crop;
break;
case ShapeType.ToolCutOut:
img = Resources.table_delete_column;
break;
case ShapeType.ToolSelect:
img = Resources.cursor;
break;

View file

@ -979,6 +979,9 @@
<Version>13.8.2</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="Resources\table-delete-column.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.