mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
0b38d9b24c
add image processing
25 lines
1.2 KiB
C#
25 lines
1.2 KiB
C#
using Azaion.Common.DTO;
|
|
|
|
namespace Azaion.Dataset;
|
|
|
|
public class DatasetExplorerModule : IAzaionModule
|
|
{
|
|
public string Name => "Переглядач";
|
|
|
|
public string SvgIcon =>
|
|
@"<?xml version=""1.0"" encoding=""utf-8""?>
|
|
<svg width=""800px"" height=""800px"" viewBox=""0 0 24 24"" xmlns=""http://www.w3.org/2000/svg"" fill=""none"" stroke=""#000000"" stroke-width=""1"" stroke-linecap=""round"" stroke-linejoin=""miter"">
|
|
<rect x=""2"" y=""2"" width=""8"" height=""8"" rx=""0"" fill=""#059cf7"" opacity=""0.8""></rect>
|
|
<rect x=""2"" y=""14"" width=""8"" height=""8"" rx=""0"" fill=""#059cf7"" opacity=""0.8""></rect>
|
|
<rect x=""14"" y=""2"" width=""8"" height=""8"" rx=""0"" fill=""#059cf7"" opacity=""0.8""></rect>
|
|
<rect x=""14"" y=""14"" width=""8"" height=""8"" rx=""0"" fill=""#059cf7"" opacity=""0.8""></rect>
|
|
<rect x=""2"" y=""2"" width=""8"" height=""8"" rx=""0""></rect>
|
|
<rect x=""2"" y=""14"" width=""8"" height=""8"" rx=""0""></rect>
|
|
<rect x=""14"" y=""2"" width=""8"" height=""8"" rx=""0""></rect>
|
|
<rect x=""14"" y=""14"" width=""8"" height=""8"" rx=""0""></rect>
|
|
</svg>";
|
|
|
|
public Type MainWindowType => typeof(DatasetExplorer);
|
|
|
|
public WindowEnum WindowEnum => WindowEnum.DatasetExplorer;
|
|
} |