Browse Source

Update SplitView comments based on ProgressBar changes

pull/11195/head
robloo 3 years ago
parent
commit
24a92e73e7
  1. 6
      src/Avalonia.Controls/SplitView/SplitView.cs
  2. 4
      src/Avalonia.Controls/SplitView/SplitViewTemplateSettings.cs

6
src/Avalonia.Controls/SplitView/SplitView.cs

@ -217,8 +217,8 @@ namespace Avalonia.Controls
/// <summary>
/// Gets or sets whether WinUI equivalent LightDismissOverlayMode is enabled
/// <para>When enabled, and the pane is open in Overlay or CompactOverlay mode,
/// the contents of the splitview are darkened to visually separate the open pane
/// and the rest of the SplitView</para>
/// the contents of the <see cref="SplitView"/> are darkened to visually separate the open pane
/// and the rest of the <see cref="SplitView"/>.</para>
/// </summary>
public bool UseLightDismissOverlayMode
{
@ -227,7 +227,7 @@ namespace Avalonia.Controls
}
/// <summary>
/// Gets or sets the TemplateSettings for the SplitView
/// Gets or sets the TemplateSettings for the <see cref="SplitView"/>.
/// </summary>
public SplitViewTemplateSettings TemplateSettings
{

4
src/Avalonia.Controls/SplitView/SplitViewTemplateSettings.cs

@ -2,8 +2,10 @@
{
/// <summary>
/// Provides calculated values for use with the <see cref="SplitView"/>'s control theme or template.
/// This class is NOT intended for general use.
/// </summary>
/// <remarks>
/// This class is NOT intended for general use outside of control templates.
/// </remarks>
public class SplitViewTemplateSettings : AvaloniaObject
{
internal SplitViewTemplateSettings() { }

Loading…
Cancel
Save