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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
5 additions and
3 deletions
-
src/Avalonia.Controls/ApplicationLifetimes/ControlledApplicationLifetimeExitEventArgs.cs
-
src/Avalonia.Controls/ApplicationLifetimes/StartupEventArgs.cs
-
src/Avalonia.Controls/ShutdownMode.cs
|
|
@ -6,7 +6,7 @@ using System; |
|
|
namespace Avalonia.Controls.ApplicationLifetimes |
|
|
namespace Avalonia.Controls.ApplicationLifetimes |
|
|
{ |
|
|
{ |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Contains the arguments for the <see cref="IClassicDesktopStyleApplicationLifetime.Exit"/> event.
|
|
|
/// Contains the arguments for the <see cref="IControlledApplicationLifetime.Exit"/> event.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public class ControlledApplicationLifetimeExitEventArgs : EventArgs |
|
|
public class ControlledApplicationLifetimeExitEventArgs : EventArgs |
|
|
{ |
|
|
{ |
|
|
|
|
|
@ -8,7 +8,7 @@ using System.Linq; |
|
|
namespace Avalonia.Controls.ApplicationLifetimes |
|
|
namespace Avalonia.Controls.ApplicationLifetimes |
|
|
{ |
|
|
{ |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Contains the arguments for the <see cref="IClassicDesktopStyleApplicationLifetime.Startup"/> event.
|
|
|
/// Contains the arguments for the <see cref="IControlledApplicationLifetime.Startup"/> event.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public class ControlledApplicationLifetimeStartupEventArgs : EventArgs |
|
|
public class ControlledApplicationLifetimeStartupEventArgs : EventArgs |
|
|
{ |
|
|
{ |
|
|
|
|
|
@ -1,10 +1,12 @@ |
|
|
// Copyright (c) The Avalonia Project. All rights reserved.
|
|
|
// 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.
|
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
|
|
|
|
|
|
|
|
using Avalonia.Controls.ApplicationLifetimes; |
|
|
|
|
|
|
|
|
namespace Avalonia.Controls |
|
|
namespace Avalonia.Controls |
|
|
{ |
|
|
{ |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Describes the possible values for <see cref="Application.ShutdownMode"/>.
|
|
|
/// Describes the possible values for <see cref="IClassicDesktopStyleApplicationLifetime.ShutdownMode"/>.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public enum ShutdownMode |
|
|
public enum ShutdownMode |
|
|
{ |
|
|
{ |
|
|
|