fixed comment into code

This commit is contained in:
2026-08-09 20:02:23 +05:00
parent 778fc1034b
commit 7e4e569d53
34 changed files with 332 additions and 306 deletions
+6 -6
View File
@@ -6,9 +6,9 @@ using System.Windows.Media;
namespace CursorLang.Views;
/// <summary>
/// Показывает элемент, если значение совпадает с одним из перечисленных
/// в параметре через запятую. Нужен, чтобы настройки точки привязки
/// и настройки экрана не показывались одновременно.
/// Shows an element when the value matches one of those listed in the parameter,
/// separated by commas. Needed so that the anchor point settings and the screen
/// settings are not shown at the same time.
/// </summary>
public sealed class EnumToVisibilityConverter : IValueConverter
{
@@ -27,8 +27,8 @@ public sealed class EnumToVisibilityConverter : IValueConverter
}
/// <summary>
/// Цвет в запись вида «#RRGGBB»: альфа не показывается, потому что
/// за прозрачность отвечает отдельная настройка.
/// A colour into a "#RRGGBB" notation: the alpha is not shown, because
/// transparency is a separate setting.
/// </summary>
public sealed class ColorToHexConverter : IValueConverter
{
@@ -40,7 +40,7 @@ public sealed class ColorToHexConverter : IValueConverter
}
/// <summary>
/// Цвет в кисть — для образцов палитры в списке.
/// A colour into a brush — for the palette swatches in the list.
/// </summary>
public sealed class ColorToBrushConverter : IValueConverter
{