Skip to content

Commit c96936e

Browse files
authored
Merge pull request #879 from HandyOrg/t/bot/fix-codeformatting
[Bot] Automated PR to fix formatting errors
2 parents 3bcc29b + 5bbe8a0 commit c96936e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Shared/HandyControl_Shared/Controls/Attach/GridAttach.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static void SetName(DependencyObject element, string value)
1313
=> element.SetValue(NameProperty, value);
1414

1515
public static string GetName(DependencyObject element)
16-
=> (string)element.GetValue(NameProperty);
16+
=> (string) element.GetValue(NameProperty);
1717

1818
public static readonly DependencyProperty RowNameProperty = DependencyProperty.RegisterAttached(
1919
"RowName", typeof(string), typeof(GridAttach), new PropertyMetadata(default(string), OnRowNameChanged));
@@ -52,7 +52,7 @@ public static void SetRowName(DependencyObject element, string value)
5252
=> element.SetValue(RowNameProperty, value);
5353

5454
public static string GetRowName(DependencyObject element)
55-
=> (string)element.GetValue(RowNameProperty);
55+
=> (string) element.GetValue(RowNameProperty);
5656

5757
public static readonly DependencyProperty ColumnNameProperty = DependencyProperty.RegisterAttached(
5858
"ColumnName", typeof(string), typeof(GridAttach), new PropertyMetadata(default(string), OnColumnNameChanged));
@@ -91,6 +91,6 @@ public static void SetColumnName(DependencyObject element, string value)
9191
=> element.SetValue(ColumnNameProperty, value);
9292

9393
public static string GetColumnName(DependencyObject element)
94-
=> (string)element.GetValue(ColumnNameProperty);
94+
=> (string) element.GetValue(ColumnNameProperty);
9595
}
9696
}

0 commit comments

Comments
 (0)