Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.6 KB

calendarview_focusborderbrush.md

File metadata and controls

40 lines (30 loc) · 1.6 KB
-api-id -api-type
P:Microsoft.UI.Xaml.Controls.CalendarView.FocusBorderBrush
winrt property

Microsoft.UI.Xaml.Controls.CalendarView.FocusBorderBrush

-description

Gets or sets a brush that provides the border of a calendar item that has focus.

-xaml-syntax

<CalendarView FocusBorderBrush="{StaticResource resourceName}"/>
- or -
<CalendarView FocusBorderBrush="colorString"/>
- or -
<CalendarView>
  CalendarView.FocusBorderBrush>singleBrush</CalendarView.FocusBorderBrush>
</CalendarView>

-xaml-values

resourceName
resourceNameThe resource name (x:Key attribute value) of an existing XAML resource that defines a brush. This is the recommended way to specify Brush values in XAML if you have any intention of using the same colors or brushes in more than one part of your UI. See Remarks in Brush or ResourceDictionary and XAML resource references.
colorString
colorStringThe Color for a SolidColorBrush expressed as an attribute string. This can be a named color, an RGB value, or an ScRGB value. RGB or ScRGB may also specify alpha information. See the XAML Values section in Color.
singleBrush
singleBrushWithin opening and closing property elements, exactly one object element for an object that derives from Brush. This is typically one of the following classes: LinearGradientBrush, ImageBrush, SolidColorBrush.
## -property-value A brush that provides the border of a calendar item that has focus.

-remarks

-examples

-see-also