geejay
geejay

Reputation: 5618

Layout manager for .NET, UI agnostic

I need a simple Layout Manager that is UI agnostic. By this, I mean it should not specify how I want to represent my shapes/controls on the screen. It should just enable me to say:

I want shape X here. I want shape Y under shape X. I want shape Z to surround X, and isolate itself from shape Y.

I guess it would be nice if it can also give me (X, Y) for each shape when I am finished.

I am using .NET.

Upvotes: 0

Views: 435

Answers (1)

Quagmire
Quagmire

Reputation: 554

You could consider Windows Presentation Foundation

The Layout System

Upvotes: 1

Related Questions