better names and API docs

This commit is contained in:
Tig
2024-10-24 16:40:47 -06:00
parent 5a11a390ba
commit a93d1ceeb7
64 changed files with 742 additions and 710 deletions

View File

@@ -840,7 +840,7 @@ public class ApplicationTests
// Don't use Dialog here as it has more layout logic. Use Window instead.
Dialog d = null;
Toplevel top = new ();
top.DrawContent += (s, a) => count++;
top.DrawingContent += (s, a) => count++;
int iteration = -1;
Application.Iteration += (s, a) =>
@@ -851,7 +851,7 @@ public class ApplicationTests
{
// TODO: Don't use Dialog here as it has more layout logic. Use Window instead.
d = new ();
d.DrawContent += (s, a) => count++;
d.DrawingContent += (s, a) => count++;
Application.Run (d);
}
else if (iteration < 3)