123456789101112131415161718192021222324 |
- /*-------------------------------------------------------------------------
- * 功能描述:BlockView
- * 作者:xulisong
- * 创建时间: 2018/12/18 9:34:26
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Controls;
- namespace FWindSoft.Wpf.Controls
- {
- public class BlockView:ViewBase
- {
- protected override object DefaultStyleKey
- {
- get { return null; }
- }
- }
- }
|