mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-21 18:13:14 +02:00
19 lines
437 B
C#
19 lines
437 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Media;
|
|
|
|
namespace Ryujinx.Ava.UI.Controls
|
|
{
|
|
public class MiniVerticalSeparator : Border
|
|
{
|
|
public MiniVerticalSeparator()
|
|
{
|
|
Width = 2;
|
|
Height = 12;
|
|
Margin = new Thickness();
|
|
BorderBrush = Brushes.Gray;
|
|
Background = Brushes.Gray;
|
|
BorderThickness = new Thickness(1);
|
|
}
|
|
}
|
|
}
|