Accessibility
Accessibility ensures that the SiticoneDashboardButton control is usable by people with disabilities by providing detailed descriptive properties and screen reader support.
Overview
Properties Table
Property
Type
Default Value
Description
Code Examples
Basic Integration
using System;
using System.Drawing;
using System.Windows.Forms;
using SiticoneNetFrameworkUI;
public class AccessibilityDemoForm : Form
{
public AccessibilityDemoForm()
{
// Instantiate the SiticoneDashboardButton control
SiticoneDashboardButton dashboardButton = new SiticoneDashboardButton
{
Text = "Submit",
Size = new Size(250, 45),
Location = new Point(50, 50),
// Provide a detailed description for screen readers
AccessibilityDescription = "Submits the form and sends your input to the server.",
// Enable accessibility features (enabled by default)
IsAccessibilityEnabled = true
};
// Add the button to the form
Controls.Add(dashboardButton);
}
[STAThread]
public static void Main()
{
Application.EnableVisualStyles();
Application.Run(new AccessibilityDemoForm());
}
}Advanced Customization
Key Points
Aspect
Details
Best Practices
Practice
Recommendation
Common Pitfalls
Pitfall
How to Avoid
Usage Scenarios
Scenario
Example Use Case
Review
Summary
Additional Resources
Resource
Description
Link/Reference
Last updated