mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 16:10:42 +08:00
22 lines
503 B
C#
22 lines
503 B
C#
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();
|
|
}
|
|
}
|