mirror of
https://github.com/DarthAffe/StableDiffusion.NET.git
synced 2025-12-12 21:38:45 +00:00
11 lines
304 B
C#
11 lines
304 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace ImageCreationUI;
|
|
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow() => InitializeComponent();
|
|
|
|
private void TextBoxBase_OnTextChanged(object sender, TextChangedEventArgs args) => (sender as TextBox)?.ScrollToEnd();
|
|
} |