Fundamentals
Components
Code Utilities
Demo

Information

Basic information about the application.

Typography

Guidelines on using typography effectively.

Colors

Color schemes and usage guidelines.

Base Components

Fundamental components for building UI elements.

Form Components

Components used for creating forms.

Card Components

Components designed for card layouts.

Layout Components

Components for managing layout structure.

Utility Components

Utility components for various functions.

Media Components

Components for handling media content.

<not-set>

<not-set>

DataSource

Data binding and source management component.

C# Code

Utilities and examples for C# programming.

JavaScript

Guidelines and tools for JavaScript development.

Styles

Styling guidelines and utilities.

License

Information about the project's license.

Contact

How to get in touch with us.

Git Repository

Access the project's Git repository.

Contact

How to get in touch with us.

Donate

Support the development by donating.

BcComponentBase

Base class for BlazorCraft components.

BcInputComponentBase

Base class for input components.

BcLayoutComponentBase

Base class for layout components.

BcCard

Basic card layout component.

BcCardGroup

Group of card components.

BcActionCard

Card component with action elements.

BcComboCard

Card combining multiple features.

BcDateCard

Card component displaying dates.

BcDateTimeCard

Card displaying date and time.

BcEntryCard

Card for data entry.

BcExpandCard

Expandable card component.

BcExpandComboCard

Card combining multiple features.

BcRadioCard

Card with radio button options.

BcSpinCard

Card with spinner control.

BcSwitchCard

Card with switch toggle.

BcTimeCard

Card displaying time information.

BcButton

Button component for user interactions.

BcCheckbox

Checkbox input component.

BcDropDown

Dropdown list selection component.

BcFileDrop

Component for dragging and dropping files.

BcRadioButton

Radio button input component.

BcRange

Range slider input component.

BcValidation

Validation utilities for form inputs.

BcInputText

Text input field component.

BcInputNumber

Number input field component.

BcInputDate

Date input field component.

BcTextArea

Multi-line text input component.

BcTextEditor

Rich text editor component.

BcTimePicker

Component for selecting time.

BcDateTimePicker

Component for selecting date and time.

BcCalendarDatePicker

Date picker with calendar interface.

AutoGrid

Automatic grid layout component.

Grid

Grid layout component.

BreakpointListener

Component to detect responsive breakpoints.

Clamp

Component for clamping content.

ContentInjector

Inject content dynamically.

Flex

Flexible box layout component.

Not Found

Page not found component.

Section

Layout section component.

ThemeRenderer

Component for rendering themes.

BcImage

Image display component.

BcSvg

SVG rendering component.

BcImageCropper

Component for cropping images.

BcBanner

Banner display component.

BcContextMenu

Context menu component.

BcDialog

Dialog/modal component.

BcDragProvider

Component providing drag-and-drop functionality.

BcExpander

Expandable content component.

BcProgressBar

Progress bar indicator component.

BcSidebarView

Sidebar navigation component.

BcSlider

Slide show component.

BcSpinner

Loading spinner component.

BcSteps

Step-by-step wizard component.

BcTabs

Tab navigation component.

BcToast

Toast notification component.

BcTooltip

Tooltip display component.

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

BcAnimation

Animation utilities and components.

BcAnimationTimeLine

Timeline for managing animations.

BcBrowserFile

Upload files with Path and progress state.

BcCanvasBuilder

BcCanvasBuilder utilities and examples.

BcCssClassBuilder

Utility for building CSS class strings.

BcCssStyleBuilder

Utility for building CSS style strings.

BcCssColorMixer

Utility for mixing CSS colors.

BcLocalizer

Localization utilities.

BcJsBrowserLanguageService

Service for loading and setting the language for the Localizer.

BcJsCanvasService

Service for creating Canvas Images

BcJsClipBoardService

Service for clipboard operations.

BcJsCookieService

Service for handling cookies in JavaScript.

BcJsDomService

Service for DOM manipulations.

BcJsFileService

Service for file operations.

BcJsInputService

Service for registering input listeners.

BcJsLocalStorageService

Service for local storage operations.

BcJsMouseService

Service for mouse event handling.

BcJsSoundService

Service for playing sounds.

BcJsThemeService

Service for detecting browser theme settings.

BcJsTouchService

Service for handling touch input.

BcJsVibrateService

Service for triggering device vibrations.

Css BorderRadius Classes

Utilities for border radius styling.

Css Cursor Classes

Utilities for cursor styling.

Css Display Classes

CSS display property utilities.

Css Flex Classes

CSS flexbox utilities.

Css Grid Classes

CSS flexbox utilities.

Css FontSize Classes

Utilities for font sizes.

Css Margin Classes

Utilities for CSS margins.

Css Padding Classes

Utilities for CSS padding.

Css Scroll Classes

Utilities for scroll behavior.

Css Text Classes

Utilities for text styling.

Css Width Classes

Utilities for element widths.

Css Height Classes

Utilities for element heights.

BcDataTable

DataTable bound the the BcDatasource

BcInfiniteScroll

Unlimited Scroll through your BcDatasource

BcContextMenu

Description

The BcContextMenu component provides a customizable context menu for left-click, right-click, and middle-click interactions. It supports configurable delay times and multiple menu actions.

Information

For Phones Middle and RightClick will be triggered on LongPressing the Content.
The Phone will vibrate to signal the switch between Menus!

Sample

Parameters

ContextMenuDirection

BcContextMenuDirection

Defines the position of the context menu relative to the triggering element.

ChildContent

RenderFragment?

Specifies the content inside the main element that triggers the context menu.

LeftClickContent

RenderFragment < ContextMenuEvents >

Defines the content displayed when the element is left-clicked.

RightClickContent

RenderFragment < ContextMenuEvents >

Defines the content displayed when the element is right-clicked.

MiddleClickContent

RenderFragment < ContextMenuEvents >

Defines the content displayed when the element is middle-clicked.

RightClickLongPressDelay

TimeSpan

Determines the delay before a right-click long-press triggers the menu.

MiddleClickLongPressDelay

TimeSpan

Determines the delay before a middle-click long-press triggers the menu.

Methods

Close ( )

Closes the currently open context menu and hides its content.

Task
Rerender ( )

Forces the component to recalculate its position and re-render.

Task
OnMouseUp ( MouseEventArgs args )

Handles the mouse up event to determine which menu to open based on the mouse button clicked.

Task
OnTouchStart ( TouchEventArgs obj )

Handles touch start events, detecting long-press interactions for mobile users.

Task
OnTouchEnd ( TouchEventArgs obj )

Handles touch end events to finalize menu selection based on touch duration.

Task
CalcPosition ( )

Calculates the position of the context menu relative to its parent and updates its placement accordingly.

Task