Browse Source

Merge pull request #2698 from jp2masa/xml-comment-fixes

Fixed XML comment references
pull/2727/head
Jumar Macato 7 years ago
committed by GitHub
parent
commit
24ce1bfbac
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Avalonia.Controls/ApplicationLifetimes/ControlledApplicationLifetimeExitEventArgs.cs
  2. 2
      src/Avalonia.Controls/ApplicationLifetimes/StartupEventArgs.cs
  3. 4
      src/Avalonia.Controls/ShutdownMode.cs

2
src/Avalonia.Controls/ApplicationLifetimes/ControlledApplicationLifetimeExitEventArgs.cs

@ -6,7 +6,7 @@ using System;
namespace Avalonia.Controls.ApplicationLifetimes
{
/// <summary>
/// Contains the arguments for the <see cref="IClassicDesktopStyleApplicationLifetime.Exit"/> event.
/// Contains the arguments for the <see cref="IControlledApplicationLifetime.Exit"/> event.
/// </summary>
public class ControlledApplicationLifetimeExitEventArgs : EventArgs
{

2
src/Avalonia.Controls/ApplicationLifetimes/StartupEventArgs.cs

@ -8,7 +8,7 @@ using System.Linq;
namespace Avalonia.Controls.ApplicationLifetimes
{
/// <summary>
/// Contains the arguments for the <see cref="IClassicDesktopStyleApplicationLifetime.Startup"/> event.
/// Contains the arguments for the <see cref="IControlledApplicationLifetime.Startup"/> event.
/// </summary>
public class ControlledApplicationLifetimeStartupEventArgs : EventArgs
{

4
src/Avalonia.Controls/ShutdownMode.cs

@ -1,10 +1,12 @@
// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using Avalonia.Controls.ApplicationLifetimes;
namespace Avalonia.Controls
{
/// <summary>
/// Describes the possible values for <see cref="Application.ShutdownMode"/>.
/// Describes the possible values for <see cref="IClassicDesktopStyleApplicationLifetime.ShutdownMode"/>.
/// </summary>
public enum ShutdownMode
{

Loading…
Cancel
Save