资源简介
wpf 图片翻转特效 wpf 图片翻转特效
代码片段和文件信息
// -------------------------------------------------------------------------------
//
// This file is part of the FluidKit project: http://www.codeplex.com/fluidkit
//
// Copyright (c) 2008 The FluidKit community
// All rights reserved.
//
// Redistribution and use in source and binary forms with or without modification
// are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice this
// list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice this
// list of conditions and the following disclaimer in the documentation and/or
// other materials provided with the distribution.
//
// * Neither the name of FluidKit nor the names of its contributors may be used to
// endorse or promote products derived from this software without specific prior
// written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS“ AND
// ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT LIMITED TO THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT INDIRECT INCIDENTAL SPECIAL EXEMPLARY OR CONSEQUENTIAL DAMAGES
// (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
// ANY THEORY OF LIABILITY WHETHER IN CONTRACT STRICT LIABILITY OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// -------------------------------------------------------------------------------
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace FluidKit.Controls
{
public class BalloonDecorator : Decorator
{
public static readonly DependencyProperty BackgroundProperty =
DependencyProperty.Register(“Background“ typeof (Brush) typeof (BalloonDecorator));
public static readonly DependencyProperty BorderBrushProperty =
DependencyProperty.Register(“BorderBrush“ typeof (Brush) typeof (BalloonDecorator));
public static readonly DependencyProperty CornerRadiusProperty =
DependencyProperty.Register(“CornerRadius“ typeof (double) typeof (BalloonDecorator)
new frameworkPropertymetadata(10.0
frameworkPropertymetadataOptions
.AffectsRender |
frameworkPropertymetadataOptions
.AffectsMeasure));
public static readonly DependencyProperty PointerLengthPr
- 上一篇:asp.net校园二手交易中心
- 下一篇:C#学生管理系统
相关资源
- C# 使用ListView控件实现图片浏览器(源
- c#向word文件插入图片
- 用WPF开发的多人聊天室 语言C#
- C#实现在picturebox内画矩形,并将局部
- C#处理png图片位深度和交错属性
- WPF控件库HandyControl
- WPF
- c# wpf实现的上位机
- VisionPro控件在WPF 应用
- WPF使用MVVM
- winform实现饼状图、柱状图、折线图(
- C#中WPF联合Halcon的一个学习(解决内存
- WPF CEFSHARP 支持 MP4
- WPF贝塞尔曲线
- WPF 简单控件集
- C# 无损压缩图片
- WPF鼠标拖动控件源码
- wpf开发教程
- AduMusic迷你音乐盒WPF源码
- WPF PDF封装(放大、缩小、单页、双页
- C# .NET5.0(net core)基于WPF(XAML)开发
- WPF MVVM 基础入门
- wpf echart
- windorm 加载WPF控件 ,实现dxf文件显示
- WPF Control Development
- wpf Dock window
- svg批量转jpg|png
- WPF 隐蔽查看股票行情工具
- WPF控件库(HandyControl)
- TCP通信(支持发送文本和图片文件)
评论
共有 条评论