sqlnewbie
sqlnewbie

Reputation: 867

Analogous WinForms Propertygrid in WPF?

DO we have Analogous WinForms Propertygrid in WPF?

Thanks.

Upvotes: 1

Views: 928

Answers (2)

Phil
Phil

Reputation: 43011

Or the property grid which is part of the extended WPF toolkit.

Upvotes: 0

Botz3000
Botz3000

Reputation: 39650

Not in the .NET Framework. You can use a WindowsFormsHost to use the Forms Property Grid, or you can look at one of the community implementations for WPF, like those (not sure which of them are still active):

http://wpg.codeplex.com/
http://wpfpropertygrid.codeplex.com/
http://www.codeproject.com/Articles/87715/Native-WPF-4-PropertyGrid

Upvotes: 1

Related Questions