Skip to content

Instantly share code, notes, and snippets.

@jacksonh
Created August 17, 2010 21:04
Show Gist options
  • Save jacksonh/532021 to your computer and use it in GitHub Desktop.
Save jacksonh/532021 to your computer and use it in GitHub Desktop.
CreateAsyncTest (c,
() => Assert.VisualChildren (c, "#1",
new VisualNode<Grid> ("#a",
new VisualNode<ContentPresenter> ("#b",
new VisualNode<Rectangle> ("#c")
)
)
),
() => {
c.Content = new Rectangle ();
Assert.VisualChildren (c, "#3",
new VisualNode<Grid> ("#d",
new VisualNode<ContentPresenter> ("#e")
)
);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment