/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Actions/Content/ImageManipulation/RotateLeftAction.cs
23 строки
631 B
0x5BFA
Code Quality: Generate ICommandManager, CommandManager and CommandCodes from [GeneratedRichCommand] (#17536)
04 сен 2025, 17:35
Не верифицирован
04 сен 2025, 17:35
d45ca74
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. using Windows.Graphics.Imaging; namespace Files.App.Actions { [GeneratedRichCommand] internal sealed partial class RotateLeftAction : BaseRotateAction { public override string Label => Strings.RotateLeft.GetLocalizedResource(); public override string Description => Strings.RotateLeftDescription.GetLocalizedFormatResource(context.SelectedItems.Count); public override RichGlyph Glyph => new(themedIconStyle: "App.ThemedIcons.ImageRotate.ACW"); protected override BitmapRotation Rotation => BitmapRotation.Clockwise270Degrees; } }