xaml-csharp-development-skill-for-avalonia

RangeBase

Note: This document is auto-generated by scripts/generate_control_reference_docs.py. Do not edit manually.

Summary

Basic APIs

XAML Usage

<!-- Requires xmlns:local="using:MyApp.Controls" -->
<!-- RangeBase is abstract; use a concrete derived type -->
<local:MyRangeBase x:Name="SampleRangeBase" />

C# Usage

using Avalonia.Controls.Primitives;

public sealed class MyRangeBase : RangeBase
{
}

var control = new MyRangeBase();