Archived
forked from RDTKEditor/RDTKEditor
添加对 Core 的直接引用
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
namespace RhythmBase.Events
|
||||
{
|
||||
/// <summary>
|
||||
/// Specifies the different modes for content display.
|
||||
/// </summary>
|
||||
public enum ContentModes
|
||||
{
|
||||
/// <summary>
|
||||
/// Scales the content to fill the available space.
|
||||
/// </summary>
|
||||
ScaleToFill,
|
||||
|
||||
/// <summary>
|
||||
/// Scales the content to fit within the available space while maintaining the aspect ratio.
|
||||
/// </summary>
|
||||
AspectFit,
|
||||
|
||||
/// <summary>
|
||||
/// Scales the content to fill the available space while maintaining the aspect ratio.
|
||||
/// </summary>
|
||||
AspectFill,
|
||||
|
||||
/// <summary>
|
||||
/// Centers the content within the available space without scaling.
|
||||
/// </summary>
|
||||
Center,
|
||||
|
||||
/// <summary>
|
||||
/// Tiles the content to fill the available space.
|
||||
/// </summary>
|
||||
Tiled
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user