skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • NEW: Design Kits for Figma
    • Online Training
    • Document Processing Library
    • Embedded Reporting for web and desktop

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • Resources Hub
    • .NET MAUI Tutorials and Learning
    • First Steps
    • Submit a Ticket
    • FAQs

    Docs & Resources

    • Docs
    • Demos
    • Migrate to .NET MAUI
    • Forums
    • Videos
    • Blogs

    Productivity and Design Tools

    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class RadPopup

Represents a popup control that displays content in an overlay above other UI elements. RadPopup provides a flexible way to show temporary content such as menus, tooltips, dialog boxes, or any custom content that should appear above the main application interface.

Key Features:

  • Modal and non-modal presentation modes
  • Flexible positioning with placement modes (Top, Bottom, Left, Right, Center, Relative)
  • Customizable animations (Fade, Zoom, None)
  • Automatic repositioning to stay within screen bounds
  • Support for custom content and data templates
  • Attached property support for easy XAML binding

XAML Usage:

<Button Text="Show Popup">
    <telerik:RadPopup.Popup>
        <telerik:RadPopup Placement="Top">
            <Label Text="Attached Popup" BackgroundColor="Yellow" />
        </telerik:RadPopup>
    </telerik:RadPopup.Popup>
</Button>

Code-Behind Usage:

// Basic popup creation
var popup = new RadPopup
{
    Content = new Label { Text = "Hello from Popup!" },
    PlacementTarget = this.targetElement,
    Placement = PlacementMode.Bottom,
    IsOpen = true
};

// Using attached property in code
RadPopup.SetPopup(this.targetElement, popup);
var attachedPopup = RadPopup.GetPopup(this.targetElement);

Important Properties:

  • IsOpen: Controls popup visibility (supports two-way binding)
  • Content/ContentTemplate: Defines the popup content
  • PlacementTarget: Element to position relative to
  • Placement: Positioning mode (Top, Bottom, Left, Right, Center, Relative)
  • IsModal: Whether popup blocks interaction with underlying content
  • HorizontalOffset/VerticalOffset: Fine-tune positioning
  • AnimationType: Animation style (Fade, Zoom, None)

Inheritance
System.Object
PopupBase
RadPopup
Inherited Members
PopupBase.IsOpenProperty
PopupBase.ContentProperty
PopupBase.ContentTemplateProperty
PopupBase.PlacementTargetProperty
PopupBase.PlacementProperty
PopupBase.HorizontalOffsetProperty
PopupBase.VerticalOffsetProperty
PopupBase.IsModalProperty
PopupBase.OutsideBackgroundColorProperty
PopupBase.AnimationDurationProperty
PopupBase.AnimationEasingProperty
PopupBase.AnimationTypeProperty
PopupBase.IsOpen
PopupBase.Content
PopupBase.ContentTemplate
PopupBase.PlacementTarget
PopupBase.Placement
PopupBase.HorizontalOffset
PopupBase.VerticalOffset
PopupBase.IsModal
PopupBase.OutsideBackgroundColor
PopupBase.AnimationDuration
PopupBase.AnimationEasing
PopupBase.AnimationType
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll

Syntax

public class RadPopup : PopupBase

Constructors

RadPopup()

Declaration
public RadPopup()

Fields

PopupProperty

Identifies the Popup attached property.

Declaration
public static readonly BindableProperty PopupProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

Methods

GetPopup(BindableObject)

Gets the value of the Popup attached property from the specified Microsoft.Maui.Controls.BindableObject.

Declaration
public static RadPopup GetPopup(BindableObject obj)
Parameters
Microsoft.Maui.Controls.BindableObject obj

The Microsoft.Maui.Controls.BindableObject from which to read the property value.

Returns
RadPopup

The RadPopup associated with the specified object.

SetPopup(BindableObject, RadPopup)

Sets the value of the Popup attached property on the specified Microsoft.Maui.Controls.BindableObject.

Declaration
public static void SetPopup(BindableObject obj, RadPopup value)
Parameters
Microsoft.Maui.Controls.BindableObject obj

The Microsoft.Maui.Controls.BindableObject on which to set the property value.

RadPopup value

The RadPopup to associate with the specified object.

Extension Methods

AndroidTypeConversionExtensions.ToJavaObject(Object)
Sample Applications
  • Controls Samples App
  • Crypto Tracker App
Support Resources
  • .NET MAUI SDKBrowser App
Community
  • Forums
  • Blogs
  • Feedback Portal
  • YouTube Channel

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.