SideScroll.Network 0.15.0

dotnet add package SideScroll.Network --version 0.15.0
                    
NuGet\Install-Package SideScroll.Network -Version 0.15.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SideScroll.Network" Version="0.15.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SideScroll.Network" Version="0.15.0" />
                    
Directory.Packages.props
<PackageReference Include="SideScroll.Network" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SideScroll.Network --version 0.15.0
                    
#r "nuget: SideScroll.Network, 0.15.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SideScroll.Network@0.15.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SideScroll.Network&version=0.15.0
                    
Install as a Cake Addin
#tool nuget:?package=SideScroll.Network&version=0.15.0
                    
Install as a Cake Tool

SideScroll

SideScroll is a cross platform Avalonia UI framework designed for quickly navigating through a tree of tabs. Every tab that shows will automatically select the next most likely tabs, and the next, until you need to start scrolling. Navigate 20 or even 50 tabs deep, and create links to save or share with others.

SideScroll is designed with speed in mind, for both development and usage. Most tabs are created in code which makes them easier to link together and refactor later. Any object can be viewed or edited by adding it to a tab, with all the controls being automatically created for you, and customized via attributes. DataRepos can be used to save and load these objects, and the selected items can be passed in links automatically.

Features

  • Cross-Platform .NET Avalonia UI Framework — Supports Windows, macOS, and Linux
  • Smart Tab Navigation — Automatically selects the next most likely items based on past usage.
  • Multiple Path Support — Open and compare multiple paths simultaneously.
  • Shareable Links — Create links to share views with others.
  • DataRepos — Manage local data storage and display data bound views
  • Dynamic Form Generation — Load any object into a TabForm for auto-generated Avalonia controls.
  • Rich Text Support — Integrated AvaloniaEdit support for rich text viewing and editing
  • Interactive Charting — Integrated LiveCharts 2 support for smooth, animated charts. Use the mouse to zoom in or select a series to show additional tabs.

Examples

VideoGamesDB

VideoGamesDB

Screenshots

Light Theme

Light Theme

Dark Theme

Dark Theme

Custom Theming - Hybrid Theme

Light Blue Theme

Rich Text Editing with AvaloniaEdit

Rich Text Editing

Links

Logo

Documentation

Samples

License

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.15.0 79 1/26/2026
0.14.0 444 12/10/2025
0.13.0 290 11/11/2025
0.12.0 183 10/16/2025
0.11.0 205 9/23/2025
0.10.0 208 9/3/2025
0.9.10 189 8/11/2025
0.9.9 181 7/1/2025
0.9.8 185 6/4/2025
0.9.7 221 4/22/2025
0.9.6 290 4/8/2025
0.9.5 304 3/20/2025
0.9.4 241 2/10/2025
0.9.3 249 2/4/2025
0.9.2 241 1/23/2025
0.9.1 243 1/12/2025
0.9.0 207 1/9/2025
0.8.0 254 12/8/2024
0.7.0 289 11/19/2024
0.6.0 282 9/23/2024
0.5.0 240 7/28/2024
0.4.0 306 7/21/2024
0.3.0 279 7/15/2024
0.2.0 283 7/12/2024
0.1.0 290 7/5/2024

- Simplified Bookmark Schema to group the SelectedRow and TabBookmark together
     - This new schema should also make it easier to add Json Bookmark serialization in the future
   - Added ListEnumValue for showing enums and flags
   - Added Nested DataGrid Filter Support
     - Filters now allow nesting via parenthesis
     - Filters now treat all words as required by default unless an | operator is used
   - Fixed Tab Resizing not updating MaxDesiredWidth
     - This also fixes resizing DataGrid columns and missing DataGrid values
   - Fixed Custom Titlebar not responding to mouse clicks near the bottom of the title bar when maximized
   - Fixed Windows left positioning when the Custom Titlebar is used
   - Fixed Mouse Clicks not being detected around Image and Toolbar Button Borders
   - Fixed DateTimeUtils.FormatTimeRange() for UTC Time Ranges
   - Fixed TimeRangePeriod Summing when TimeRangeValues aren't aligned with the TimeWindow and period
   - Fixed Copying Text in TabText for Web Browsers
   - Fixed MemoryTypeCache cache duration not expiring items (only size was limiting)
   - Improved serializer handling when changing nullability of class members
   - Added serializer support for custom constructors with optional parameters that can't be serialized
   - Moved SideScroll.Avalonia.ScreenCapture project into SideScroll.Avalonia
   - Added MinWidth attribute support for TabTextBox
   - Added ToolTip attribute support for Text Controls
   - Added Theming for Border Focus Colors
   - Added Chart Legend Context Menu for copying the name and totals to the clipboard
   - Added Summary docs for ListSeries, ChartView, Paths, and WordSpacer