menu

MAUI

  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class KanbanModel - MAUI API Reference | Syncfusion

    Show / Hide Table of Contents

    Class KanbanModel

    The KanbanModel class represents the fields for the card.

    Inheritance
    System.Object
    KanbanModel
    Implements
    System.ComponentModel.INotifyPropertyChanged
    Namespace: Syncfusion.Maui.Kanban
    Assembly: Syncfusion.Maui.Kanban.dll
    Syntax
    public class KanbanModel : Object, INotifyPropertyChanged

    Constructors

    KanbanModel()

    Declaration
    public KanbanModel()

    Properties

    CanShowPlaceholder

    Internal use only.

    Declaration
    public bool CanShowPlaceholder { get; }
    Property Value
    Type
    System.Boolean

    Category

    Gets or sets the category of the card.

    Declaration
    public object Category { get; set; }
    Property Value
    Type
    System.Object

    Description

    Gets or sets the description of the card.

    Declaration
    public string Description { get; set; }
    Property Value
    Type
    System.String

    ID

    Gets or sets the ID of the card.

    Declaration
    public double ID { get; set; }
    Property Value
    Type
    System.Double

    ImageURL

    Gets or sets the image URL of the card.

    Declaration
    public string ImageURL { get; set; }
    Property Value
    Type Description
    System.String

    The image URL can be set in two ways for defulat card:

    • **Using an Assembly Reference**: Set the value as "Assembly.ImageName.png".

      Note: The image must be saved in the `Resources/Images` folder.

      ImageURL = typeof(ViewModel).Assembly + ".image_name.png";
    • **Using a Local Assembly**: Simply set the image name directly. For example:
      ImageURL = "image_name.png";

    IndicatorFill

    Gets or sets the indicator color in the card.

    Declaration
    public Brush IndicatorFill { get; set; }
    Property Value
    Type
    Microsoft.Maui.Controls.Brush

    Tags

    Gets or sets the tags of the card.

    Declaration
    public List<string> Tags { get; set; }
    Property Value
    Type
    System.Collections.Generic.List<System.String>

    Title

    Gets or sets the card title.

    Declaration
    public string Title { get; set; }
    Property Value
    Type
    System.String

    Events

    PropertyChanged

    This event is raised when a property value changes.

    Declaration
    public event PropertyChangedEventHandler PropertyChanged
    Event Type
    Type
    System.ComponentModel.PropertyChangedEventHandler

    Implements

    System.ComponentModel.INotifyPropertyChanged
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved