开发者社区> 问答> 正文

提示类型初始化失败 有大佬知道是怎么回事吗

public class SizeAdjustChrome : Control {
    static SizeAdjustChrome() {
      FrameworkElement.DefaultStyleKeyProperty.OverrideMetadata(typeof(SizeAdjustChrome), new FrameworkPropertyMetadata(typeof(SizeAdjustChrome)));
    }



    public double GripCornerSize {
      get { return (double)GetValue(GripCornerSizeProperty); }
      set { SetValue(GripCornerSizeProperty, value); }
    }

    // Using a DependencyProperty as the backing store for GripCornerSize.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty GripCornerSizeProperty = DependencyProperty.Register("GripCornerSize", typeof(double), typeof(SizeAdjustChrome), new PropertyMetadata(7));
}
  <Style TargetType="{x:Type local:SizeAdjustChrome}">
    <Setter Property="Template">
      <Setter.Value>
        <ControlTemplate TargetType="{x:Type local:SizeAdjustChrome}">
          <Grid>

            <Grid Opacity="0" Margin="-7">
              <!--左-->
              <local:SizeAdjustThumb Height="{TemplateBinding GripCornerSize}" Cursor="SizeWE" 
                                   VerticalAlignment="Center" HorizontalAlignment="Left"/>

Height="{TemplateBinding GripCornerSize}"

提示类型初始化失败 有大佬知道是怎么回事吗

本问题来自阿里云开发者社区的【11大垂直技术领域开发者社群】。 https://developer.aliyun.com/article/706511 点击链接欢迎加入感兴趣的技术领域群。

展开
收起
游客mxpnxp6g3cq7o 2019-08-14 09:44:19 646 0
0 条回答
写回答
取消 提交回答
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
面向失败设计 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载