本文整理汇总了C#中System.Windows.DependencyObject.Get方法的典型用法代码示例。如果您正苦于以下问题:C# DependencyObject.Get方法的具体用法?C# DependencyObject.Get怎么用?C# DependencyObject.Get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.DependencyObject
的用法示例。
在下文中一共展示了DependencyObject.Get方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetInactiveStrokeThickness
public static int GetInactiveStrokeThickness(DependencyObject i) => i.Get<int>(InactiveStrokeThicknessProperty);
示例2: GetValueFontSize
public static double GetValueFontSize(DependencyObject i) => i.Get<double>(SecondaryValueFontSizeProperty);
示例3: GetTheme
public static MaterialSet GetTheme(DependencyObject i) => i.Get<MaterialSet>(ThemeProperty);
示例4: GetValueFontFamily
public static FontFamily GetValueFontFamily(DependencyObject i) => i.Get<FontFamily>(SecondaryValueFontFamilyProperty);
示例5: GetValueFontWeight
public static FontWeight GetValueFontWeight(DependencyObject i) => i.Get<FontWeight>(SecondaryValueFontWeightProperty);
示例6: GetSegmentWidthPercentage
public static double GetSegmentWidthPercentage(DependencyObject i) => i.Get<double>(SegmentWidthPercentageProperty);
示例7: GetHorizontalLabelPositionSkew
public static double GetHorizontalLabelPositionSkew(DependencyObject i) => i.Get<double>(HorizontalLabelPositionSkewProperty);
示例8: GetYAxisFontWeight
public static FontWeight GetYAxisFontWeight(DependencyObject i) => i.Get<FontWeight>(YAxisFontWeightProperty);
示例9: GetYAxisFontStretch
public static FontStretch GetYAxisFontStretch(DependencyObject i) => i.Get<FontStretch>(YAxisFontStretchProperty);
示例10: GetYAxisFontFamily
public static FontFamily GetYAxisFontFamily(DependencyObject i) => i.Get<FontFamily>(YAxisFontFamilyProperty);
示例11: GetYAxisFontStyle
public static FontStyle GetYAxisFontStyle(DependencyObject i) => i.Get<FontStyle>(YAxisFontStyleProperty);
示例12: GetClickFeedback
public static Luminosity GetClickFeedback(DependencyObject i) => i.Get<Luminosity>(ClickFeedbackProperty);
示例13: GetLineStrokeThickness
public static double GetLineStrokeThickness(DependencyObject i) => i.Get<double>(LineStrokeThicknessProperty);
示例14: GetLineStroke
public static AbstractMaterialDescriptor GetLineStroke(DependencyObject i) => i.Get<AbstractMaterialDescriptor>(LineStrokeProperty);
示例15: GetBarTotalForeground
public static AbstractMaterialDescriptor GetBarTotalForeground(DependencyObject i) => i.Get<AbstractMaterialDescriptor>(BarTotalForegroundProperty);