32 lines
694 B
C#
32 lines
694 B
C#
using BeWo.Core.EventArg;
|
|
using BS.Shared.Core;
|
|
using DevExpress.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
|
|
namespace BeWo.ViewModel.View.AI
|
|
{
|
|
public class AiPromptbausteinChatResultViewModel : DialogViewModel
|
|
{
|
|
public AiPromptbausteinChatResultViewModel()
|
|
{
|
|
|
|
}
|
|
|
|
public string SelectedText => "Example";
|
|
public event EventHandler<TextAcceptedEventArgs> Accepted;
|
|
|
|
private void Accept_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
Accepted?.Invoke(this,
|
|
new TextAcceptedEventArgs(SelectedText));
|
|
}
|
|
}
|
|
}
|