Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-winui-shadow同步融合 winui 阴影

Agent Skill

syncfusion-winui-shadow 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

541

周安装

23

GitHub Stars

公开资料未说明

下载量

190
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-winui-shadow(同步融合 winui 阴影)
来源仓库:https://github.com/syncfusion/winui-ui-components-skills
仓库路径:skills/syncfusion-winui-shadow
安装命令:
npx skills add https://github.com/syncfusion/winui-ui-components-skills --skill syncfusion-winui-shadow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/winui-ui-components-skills --skill syncfusion-winui-shadow

简介

Syncfusion WinUI 阴影效果组件,用于增强 UI 元素视觉层次。

  • 适用于前端界面美化与深度感营造场景。syncfusion-winui-shadow 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 通过 GitHub 仓库安装,使用标准技能添加命令。
  • 安装时需注意是否影响渲染性能或依赖特定图形后端。
  • 建议查看原始文档了解阴影参数调节与平台兼容性。

SKILL.md

Implementing Shadow Control (SfShadow)

The Syncfusion WinUI Shadow control (SfShadow) applies customizable shadow effects to any framework element, creating visual depth and helping users distinguish overlapping UI elements. Shadow effects enhance the user interface by adding dimension and visual hierarchy following modern design principles.

When to Use This Skill

Use the Shadow control when you need to:

  • Add depth to UI elements - Apply shadows to buttons, cards, panels, or images
  • Create visual hierarchy - Differentiate layers and elevations in the interface
  • Enhance material design - Implement elevation effects for modern UI patterns
  • Improve UX clarity - Help users identify interactive or important elements
  • Add polish to designs - Create professional, appealing user interfaces

Trigger keywords: shadow, SfShadow, depth, elevation, drop shadow, blur effect, visual depth, layering, material design, overlapping elements

Component Overview

Control: SfShadow Namespace: Syncfusion.UI.Xaml.Core NuGet Package: Syncfusion.Core.WinUI Platform: WinUI 3 Desktop (.NET 5+)

Key Capabilities

  • Apply shadows to any framework element (buttons, images, shapes, paths)
  • Customize shadow color with alpha transparency
  • Control blur intensity for soft or sharp shadows
  • Adjust shadow position with X/Y offsets
  • Match shadow corners to element corner radius
  • Enable/disable shadows dynamically
  • Automatic theme support (light/dark modes)

Documentation and Navigation Guide

Getting Started and Basic Usage

📄 Read: references/getting-started.md

  • Installing Syncfusion.Core.WinUI NuGet package
  • Creating WinUI 3 desktop application
  • Importing Syncfusion.UI.Xaml.Core namespace
  • Initializing SfShadow control in XAML and C#
  • Applying shadows to buttons
  • Applying shadows to images
  • Applying shadows to shapes and paths
  • Complete code examples for each scenario

Customization Options

📄 Read: references/customization.md

  • Changing shadow color (Color property)
  • Adjusting blur radius (BlurRadius property)
  • Setting corner radius (ShadowCornerRadius property)
  • Positioning shadows (OffsetX, OffsetY properties)
  • Enabling/disabling shadows (EnableShadow property)
  • Default values for all properties
  • Combining multiple customizations
  • Advanced visual effects

Quick Start Example

Basic Shadow for Button

XAML:

<Page
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:syncfusion="using:Syncfusion.UI.Xaml.Core">

    <Grid>
        <syncfusion:SfShadow>
            <Button Height="50" Width="100" Content="Click Me"/>
        </syncfusion:SfShadow>
    </Grid>
</Page>

C#:

using Syncfusion.UI.Xaml.Core;

// Create shadow control
SfShadow shadow = new SfShadow();

// Create button
Button button = new Button();
button.Height = 50;
button.Width = 100;
button.Content = "Click Me";

// Add button to shadow
shadow.Content = button;

Common Patterns

1. Elevated Button with Custom Shadow

<syncfusion:SfShadow
    Color="DarkBlue"
    BlurRadius="10"
    OffsetX="5"
    OffsetY="5">
    <Button Height="50" Width="120" Content="Action"/>
</syncfusion:SfShadow>

2. Card with Soft Shadow

<syncfusion:SfShadow
    BlurRadius="15"
    OffsetX="0"
    OffsetY="8"
    ShadowCornerRadius="8">
    <Border
        Background="White"
        CornerRadius="8"
        Padding="20">
        <TextBlock Text="Card Content"/>
    </Border>
</syncfusion:SfShadow>

3. Image with Shadow Effect

<syncfusion:SfShadow
    BlurRadius="12"
    OffsetX="4"
    OffsetY="4">
    <Image
        Height="150"
        Width="150"
        Source="/Assets/photo.png"/>
</syncfusion:SfShadow>

4. Circular Button with Matching Shadow

<syncfusion:SfShadow
    ShadowCornerRadius="25"
    BlurRadius="8"
    OffsetX="3"
    OffsetY="3">
    <Button
        Height="50"
        Width="50"
        CornerRadius="25"
        Content="+"
        FontSize="24"/>
</syncfusion:SfShadow>

5. Star Rating with Shadows

<StackPanel Orientation="Horizontal">
    <syncfusion:SfShadow>
        <Path Data="M44.5 4L54.0608 33.4114H85L59.9696 51.5886L69.5304 81L44.5 62.8228L19.4696 81L29.0304 51.5886L4 33.4114H34.9392L44.5 4Z"
              Fill="#FFD700"/>
    </syncfusion:SfShadow>
    <!-- Repeat for more stars -->
</StackPanel>

6. Conditionally Enabled Shadow

<syncfusion:SfShadow EnableShadow="{Binding IsElevated}">
    <Button Content="Toggle Shadow"/>
</syncfusion:SfShadow>
// Toggle shadow programmatically
shadow.EnableShadow = false; // Disable shadow
shadow.EnableShadow = true;  // Enable shadow

Key Properties

PropertyTypeDefaultDescription
ContentobjectnullThe UI element to apply shadow to
ColorColorBlack (25% alpha)Shadow color with transparency
BlurRadiusdouble8Blur intensity (higher = softer shadow)
ShadowCornerRadiusdouble0Corner radius of the shadow
OffsetXdouble4Horizontal shadow offset (+ = right, - = left)
OffsetYdouble4Vertical shadow offset (+ = down, - = up)
EnableShadowbooltrueShow or hide shadow effect

Property Usage Tips

Color:

  • Use semi-transparent colors for realistic shadows
  • Match shadow color to background for subtle effects
  • Use darker shadows for higher elevations

BlurRadius:

  • 0-5: Sharp, close shadows (low elevation)
  • 8-12: Standard elevation shadows
  • 15+: Soft, distant shadows (high elevation)

Offsets:

  • Equal X/Y: Diagonal shadow (balanced depth)
  • X=0, Y>0: Drop shadow (common pattern)
  • Negative values: Shadow above/left of element

ShadowCornerRadius:

  • Should match the content's CornerRadius
  • Creates seamless shadow appearance
  • Essential for rounded buttons/cards

Common Use Cases

Material Design Elevation Levels

Level 1 (Resting):

<syncfusion:SfShadow OffsetX="0" OffsetY="2" BlurRadius="4">
    <Button Content="Resting"/>
</syncfusion:SfShadow>

Level 2 (Raised):

<syncfusion:SfShadow OffsetX="0" OffsetY="4" BlurRadius="8">
    <Button Content="Raised"/>
</syncfusion:SfShadow>

Level 3 (Elevated):

<syncfusion:SfShadow OffsetX="0" OffsetY="8" BlurRadius="16">
    <Button Content="Elevated"/>
</syncfusion:SfShadow>

Hover Effect with Shadow

<Button.Style>
    <Style TargetType="Button">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="Button">
                    <syncfusion:SfShadow x:Name="ButtonShadow" OffsetY="2" BlurRadius="4">
                        <ContentPresenter/>
                    </syncfusion:SfShadow>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter TargetName="ButtonShadow" Property="OffsetY" Value="8"/>
                            <Setter TargetName="ButtonShadow" Property="BlurRadius" Value="16"/>
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</Button.Style>

Gallery with Image Shadows

<ItemsControl ItemsSource="{Binding Photos}">
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <syncfusion:SfShadow
                BlurRadius="10"
                OffsetX="4"
                OffsetY="4"
                Margin="10">
                <Image Source="{Binding ImagePath}" Height="150" Width="150"/>
            </syncfusion:SfShadow>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

Best Practices

Performance

  • Use shadows sparingly on frequently updated elements
  • Consider disabling shadows during animations if performance is impacted
  • Reduce blur radius for better performance in lists with many items

Visual Design

  • Consistent elevation: Use the same shadow settings for elements at the same elevation level
  • Natural light source: Position shadows as if light comes from top-left (OffsetX=4, OffsetY=4)
  • Subtle shadows: Avoid harsh shadows; use transparency and blur
  • Theme adaptation: Test shadows in both light and dark themes

Accessibility

  • Don't rely solely on shadows to convey information
  • Ensure sufficient color contrast regardless of shadow
  • Provide alternative visual cues for shadow-based depth

Common Mistakes to Avoid

  • ❌ Setting ShadowCornerRadius without matching content's CornerRadius
  • ❌ Using opaque black shadows (always add transparency)
  • ❌ Excessive blur radius on many elements (performance impact)
  • ❌ Inconsistent shadow directions across the UI
  • ❌ Forgetting to import Syncfusion.UI.Xaml.Core namespace

Troubleshooting

Shadow not visible:

  • Verify EnableShadow is true
  • Check if shadow offset is sufficient (try increasing OffsetX/OffsetY)
  • Ensure blur radius is greater than 0
  • Verify shadow isn't same color as background
  • Check if content has transparent background

Shadow appears clipped:

  • Add margin/padding around SfShadow
  • Increase parent container size
  • Verify ClipToBounds is not set to true on parent

Performance issues:

  • Reduce number of shadows in view
  • Decrease blur radius
  • Use EnableShadow to conditionally show shadows
  • Consider virtualization for lists with shadowed items

Need more details? Read the reference files linked in the Navigation Guide above for comprehensive documentation and examples.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.46%
按下载量换算64

Claude

31.68%
按下载量换算60

Cursor

17.54%
按下载量换算33

Gemini CLI

9.61%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills