(string newTitle)
| 267 | } |
| 268 | |
| 269 | private void Rename(string newTitle) |
| 270 | { |
| 271 | if (string.Equals(Title, newTitle, StringComparison.Ordinal)) |
| 272 | return; |
| 273 | |
| 274 | Title = TitleValue = newTitle; |
| 275 | Surface.MarkAsEdited(false); |
| 276 | } |
| 277 | |
| 278 | /// <inheritdoc /> |
| 279 | public override bool OnKeyDown(KeyboardKeys key) |
nothing calls this directly
no test coverage detected