Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
918 B

using Avalonia;
using Avalonia.Controls;
using Avalonia.Controls.Primitives;
using AvaloniaEdit;
using StabilityMatrix.Avalonia.Helpers;
namespace StabilityMatrix.Avalonia.Controls;
public class PromptCard : TemplatedControl
{
/// <inheritdoc />
protected override void OnApplyTemplate(TemplateAppliedEventArgs e)
{
base.OnApplyTemplate(e);
InitializeEditors(e);
}
private static void InitializeEditors(TemplateAppliedEventArgs e)
{
foreach (
var editor in new[]
{
e.NameScope.Find<TextEditor>("PromptEditor"),
e.NameScope.Find<TextEditor>("NegativePromptEditor")
}
)
{
if (editor is not null)
{
TextEditorConfigs.ConfigForPrompt(editor);
editor.TextArea.Margin = new Thickness(0, 0, 4, 0);
}
}
}
}