From 1e84ae149df81a4edee48babc50988ed389bce5d Mon Sep 17 00:00:00 2001 From: "zhengxuan.zhang" Date: Mon, 20 Apr 2026 11:47:26 +0800 Subject: [PATCH] =?UTF-8?q?#=E5=A2=9E=E5=8A=A0=E9=A2=84=E8=A7=88=E4=BA=8B?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Events/PipelinePreviewUpdatedEvent.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 XplorePlane/Events/PipelinePreviewUpdatedEvent.cs diff --git a/XplorePlane/Events/PipelinePreviewUpdatedEvent.cs b/XplorePlane/Events/PipelinePreviewUpdatedEvent.cs new file mode 100644 index 0000000..b4a15d8 --- /dev/null +++ b/XplorePlane/Events/PipelinePreviewUpdatedEvent.cs @@ -0,0 +1,21 @@ +using Prism.Events; +using System.Windows.Media.Imaging; + +namespace XplorePlane.Events +{ + public sealed class PipelinePreviewUpdatedEvent : PubSubEvent + { + } + + public sealed class PipelinePreviewUpdatedPayload + { + public PipelinePreviewUpdatedPayload(BitmapSource image, string statusMessage) + { + Image = image; + StatusMessage = statusMessage; + } + + public BitmapSource Image { get; } + public string StatusMessage { get; } + } +}