KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
GroupBox.Avalonia
★ 17
Open GitHub ↗
A GroupBox control for Avalonia.
Download README (.md)
Explore Similar Repositories
legacy-themes
:
Zed Legacy Themes
ParTeam
:
No description available.
NicheScope
:
A unified framework for identifying multicellular niches and niche-regulated cell states from spatial transcriptomics data.
TextUtil
:
No description available.
portlight
:
Cross-platform window management for audio plugins
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
GroupBox.Avalonia
?
Download (.md)
# GroupBox [](https://github.com/wieslawsoltes/GroupBox.Avalonia/actions/workflows/build.yml) [](https://www.nuget.org/packages/GroupBox.Avalonia) [](https://www.nuget.org/packages/GroupBox.Avalonia) [](https://github.com/wieslawsoltes/GroupBox.Avalonia) [](https://github.com/wieslawsoltes/GroupBox.Avalonia) [](https://github.com/wieslawsoltes/GroupBox.Avalonia) A GroupBox control for Avalonia.  ## Usage Add `<StyleInclude Source="avares://GroupBox.Avalonia/GroupBox.axaml" />` to your application styles. ```xaml <Application xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:themes="clr-namespace:Avalonia.Themes.Fluent;assembly=Avalonia.Themes.Fluent" xmlns:groupBox="clr-namespace:GroupBox.Avalonia;assembly=GroupBox.Avalonia"> <Application.Styles> <themes:FluentTheme /> <StyleInclude Source="avares://GroupBox.Avalonia/GroupBox.axaml" /> </Application.Styles> </Application> ``` ```xaml <groupBox:GroupBox Header="GroupBox"> <StackPanel> <RadioButton Content="RadioButton1" /> <RadioButton Content="RadioButton2" /> </StackPanel> </groupBox:GroupBox> ``` ## Sample app A desktop sample application is available under `samples/GroupBox.Sample`. Run it with: ```bash dotnet run --project samples/GroupBox.Sample/GroupBox.Sample.csproj ``` ## License GroupBox.Avalonia is licensed under the [MIT license](LICENSE.TXT).