New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

WAI-ARIA Support

The WebForms SegmentedControl is built with accessibility in mind and follows the WAI-ARIA specification.

The component renders the appropriate ARIA roles, states, and properties so that assistive technologies such as screen readers can correctly announce the control and its current state to users with disabilities.

  • DefaultCS.aspx
  • DefaultCS.aspx.cs
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs"  Inherits="SegmentedControl_Accessibility_and_Internationalization_WAI_ARIA_Support_DefaultCS" %>

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
</head>

<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-container no-bg flex-center" runat="server">
        <telerik:RadSegmentedControl ID="RadSegmentedControl1" runat="server" SelectedValue="week">
            <Items>
                <telerik:SegmentedControlItem Text="Day" Value="day" />
                <telerik:SegmentedControlItem Text="Week" Value="week" />
                <telerik:SegmentedControlItem Text="Month" Value="month" />
                <telerik:SegmentedControlItem Text="Year" Value="year" />
            </Items>
        </telerik:RadSegmentedControl>
    </div>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance