GridScroller.Package 1.0.5

dotnet add package GridScroller.Package --version 1.0.5
                    
NuGet\Install-Package GridScroller.Package -Version 1.0.5
                    
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="GridScroller.Package" Version="1.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GridScroller.Package" Version="1.0.5" />
                    
Directory.Packages.props
<PackageReference Include="GridScroller.Package" />
                    
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 GridScroller.Package --version 1.0.5
                    
#r "nuget: GridScroller.Package, 1.0.5"
                    
#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.
#addin nuget:?package=GridScroller.Package&version=1.0.5
                    
Install GridScroller.Package as a Cake Addin
#tool nuget:?package=GridScroller.Package&version=1.0.5
                    
Install GridScroller.Package as a Cake Tool

GridScroller

Uno Platform compatible UI Controls Collection scroller. For example it can be used as a CheckBoxCombo control.

License Overview

This project is dual-licensed under the following terms:

  1. Non-Commercial Use

    • Licensed under the Apache-2.0.
    • Users must share the modifications they have made.
    • This applies only to non-commercial users.
  2. Commercial Use

    • Requires a separate commercial license. A Licensee Number will need to be purchased.
    • Commercial users do not have to share modifications.
    • Contact Email: rauf.hammad@outlook.com or Website:https://hexword.ca for licensing inquiries.

Getting Started

  • Non-commercial users can use the Apache-2.0 license.
  • Commercial users must obtain a commercial licensee number before use.

For full terms, see LICENSE-Apache-2.0 and LICENSE-commercial.

Example Usage

In your XAML file, add the namespace for the GridScroller control. Then use <gs:cmpGridScroller /> tag to define the control. You can add UI items inside the <gs:cmpGridScroller.Items> tag.

<Page x:Class="zevBrowserXaml.MainPage"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:local="using:zevBrowserXaml"
      xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
      xmlns:gs="using:GridScroller.Package"
      Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <Grid>
            
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="*" />
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="Auto" />
                <ColumnDefinition Width="Auto" />
                <ColumnDefinition Width="Auto" />
                <ColumnDefinition Width="Auto" />
                <ColumnDefinition Width="*" />
            </Grid.ColumnDefinitions>

            
            <gs:cmpGridScroller Width="180" Height="100"
                    BorderBrush="Black"
                    BorderThickness="1" CornerRadius="5"
                    Margin="10" Grid.Row="2" Grid.RowSpan="3"
                    Grid.Column="1" Grid.ColumnSpan="2">
                <gs:cmpGridScroller.Items>
                    <CheckBox Content="Date Folder 1" Margin="5" />
                    <CheckBox Content="Date Folder 2" Margin="5" />
                    <CheckBox Content="Date Folder 3" Margin="5" />
                    <CheckBox Content="Date Folder 4" Margin="5" />
                    <CheckBox Content="Date Folder 5" Margin="5" />
                    <CheckBox Content="Date Folder 6" Margin="5" />
                </gs:cmpGridScroller.Items>
            </gs:cmpGridScroller>
    </Grid>
    </Page>

In your code-behind file, you can access the GridScroller.Package control and its items. For example:


public sealed partial class MainPage : Page
{
    public MainPage()
    {
        this.InitializeComponent();
        // Initialize the GridScroller control programatically
        this.gsDates.Items = new ObservableCollection<UIElement>
        {
            new CheckBox { Content = "2025-05-12" },
            new CheckBox { Content = "2025-05-13" },
            new CheckBox { Content = "2025-05-14" },
            new Button { Content = "A" },
            new Button { Content = "B" }
        };
    }
}

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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
1.0.5 31 5/18/2025
1.0.4 30 5/18/2025
1.0.3 31 5/18/2025

- Made corner radius a property
- Items property is now editable programatically