如何让 ReSharper 不将我所有的 .Bind 语句添加到一行?
How can I make ReSharper not add all my .Bind statements to the one line?
我已经查看了所有选项,但我仍然无法找出它这样做的原因。这是之前的:
var textLabel = new TextLabel()
.Bind(Label.TextProperty, nameof(Text1), source: this);
这是之后的内容:
var textLabel = new TextLabel().Bind(Label.TextProperty, nameof(Text1), source: this);
我希望不要将它们全部添加到同一行,但找不到如何禁用此更改。
有没有对 ReSharper 有一定了解的人不知道我该如何阻止它?
我找到了这个问题的答案。我需要更改以下内容:
C# > Formatting Style >
Line Breaks and wrapping >
Arrangement of Method signatures >
Wrap formal parameters >
Chop always
我已经查看了所有选项,但我仍然无法找出它这样做的原因。这是之前的:
var textLabel = new TextLabel()
.Bind(Label.TextProperty, nameof(Text1), source: this);
这是之后的内容:
var textLabel = new TextLabel().Bind(Label.TextProperty, nameof(Text1), source: this);
我希望不要将它们全部添加到同一行,但找不到如何禁用此更改。
有没有对 ReSharper 有一定了解的人不知道我该如何阻止它?
我找到了这个问题的答案。我需要更改以下内容:
C# > Formatting Style >
Line Breaks and wrapping >
Arrangement of Method signatures >
Wrap formal parameters >
Chop always