如何向xamarin添加新对象?

时间:2016-01-07 08:17:40

标签: ios iphone xcode xamarin

enter image description here

ni想在xamarin(图片)中添加新对象到工具箱。你可以想象像添加新刷到Photoshop的绘图。我想创建自己的对象,并添加到工具箱。如何创建对象?它就像我不需要编码,只需将对象添加到controlviewer和done.many对象就像我想要的那样。[在此输入图像描述] [2]

[2]:http://i.stack.imgur.com/K5Zws.png(与xcode相同,向对象库添加更多对象)

1 个答案:

答案 0 :(得分:0)

Xamarin有一个walkthrough,解释了如何将自定义控件添加到Xamarin Studio设计器工具箱。

关键要素是你必须使用以下属性装饰你的类,以使设计师可以看到它:

$scope.options = {
          chart: {
            type: 'multiBarHorizontalChart',
            height: 150,
            x: function (d) {
              return d[0];
            },
            y: function (d) {
              return d[1];
            },
            stacked: true,
             xAxis: {
                    showMaxMin: true
                },
             yAxis: {
                    axisLabel: 'Values',
                    tickFormat: function(d){
                        return d3.format('$')(d);
                    }
             }
          }
        };