mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
19 lines
357 B
C#
19 lines
357 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
using Avalonia.Markup.Xaml;
|
||
|
|
|
||
|
|
namespace Flow.Launcher.Avalonia.Views.Controls
|
||
|
|
{
|
||
|
|
public partial class CardGroup : ItemsControl
|
||
|
|
{
|
||
|
|
public CardGroup()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
private void InitializeComponent()
|
||
|
|
{
|
||
|
|
AvaloniaXamlLoader.Load(this);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|