Ejemplo n.º 1
0
 /// <summary>
 /// Static constructor.
 /// </summary>
 static PieSlice3D()
 {
     SideCountProperty.OverrideMetadata(
         typeof(PieSlice3D),
         new PropertyMetadata(
             360,
             VisualPropertyChanged));
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Static constructor.
        /// </summary>
        static BeeBar3D()
        {
            SideCountProperty.OverrideMetadata(
                typeof(BeeBar3D),
                new PropertyMetadata(
                    6,
                    VisualPropertyChanged));
            DefaultTextureMappingProperty.OverrideMetadata(
                typeof(BeeBar3D),
                new PropertyMetadata(
                    true,
                    VisualPropertyChanged));

            RoundingRateProperty.OverrideMetadata(
                typeof(BeeBar3D),
                new PropertyMetadata(
                    0.20,
                    VisualPropertyChanged));
        }