// 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.
namespace Avalonia.Controls
{
///
/// Base class for and .
///
public class DefinitionBase : AvaloniaObject
{
///
/// Defines the property.
///
public static readonly StyledProperty SharedSizeGroupProperty =
AvaloniaProperty.Register(nameof(SharedSizeGroup), inherits: true);
///
/// Gets or sets the name of the shared size group of the column or row.
///
public string SharedSizeGroup
{
get { return GetValue(SharedSizeGroupProperty); }
set { SetValue(SharedSizeGroupProperty, value); }
}
}
}