CalendarView.BlackoutForeground 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个画笔,该画笔提供无法选择的日期的前景。
public:
property Brush ^ BlackoutForeground { Brush ^ get(); void set(Brush ^ value); };
Brush BlackoutForeground();
void BlackoutForeground(Brush value);
public Brush BlackoutForeground { get; set; }
var brush = calendarView.blackoutForeground;
calendarView.blackoutForeground = brush;
Public Property BlackoutForeground As Brush
<CalendarView BlackoutForeground="{StaticResource resourceName}"/>
- or -
<CalendarView BlackoutForeground="colorString"/>
- or -
<CalendarView>
CalendarView.BlackoutForeground>singleBrush</CalendarView.BlackoutForeground>
</CalendarView>
属性值
提供无法选择的日期前景的画笔。
注解
若要将日期标记为不可选择,请将 CalendarViewDayItem.IsBlackout 属性设置为 true
。 有关详细信息,请参阅 更新日历日项目。