Add files via upload

This commit is contained in:
zsyg
2025-06-29 13:04:34 +08:00
committed by GitHub
parent 5b9532acfe
commit 5ecfe2da2a
5 changed files with 275 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
namespace KortAppZ.Tools.Viewer
{
public interface IImageViewer
{
/// <summary>
/// 加载图片文件
/// </summary>
/// <param name="filePath">图片文件路径</param>
void LoadImage(string filePath);
/// <summary>
/// 显示图片
/// </summary>
void ShowImage();
/// <summary>
/// 关闭图片查看器
/// </summary>
void CloseViewer();
}
}