Is there an easy way to create the ‘Window’ menu that shows the list of child forms open?
Create a ‘Window’ menu in you mdi parent form’s menu and then drop another MenuItem into it, setting it’s MdiList property to true. It will then expand to show all the available mdi children during runtime.
Are server side cursors supported in .NET
No. Nicholas Paldino gives the following response in a position to the microsoft.public.dotnet.framework.odbcnet newsgroup. There are no updateable cursors ANYWHERE in .NET for that matter. The way .NET handles data is you push it into a dataset. The dataset keeps track of the changes that are made, and then you pass the data set back to a data adapter, which will fire off the appropriate insert, update, and delete statements in order to update the underlying data source. All of the data access in .NET is based on a disconnected data model.
Can we see the output of an XAML using XAMLPAD ?
Yes. The output of an XAML file can be viewed using the ’Refresh’ button or by pressing ’F5’ button. When ’Refresh’ button is clicked, XAMLPAD parses and renders the content and displays the output.
Does XAMLPAD support custom controls ?
Custom controls can be added by adding the dlls to the XAMLPAD using the Load Menu item in the File Menu (available in XAMLPAD V3.0).
What is XAMLPAD ?
XAMLPAD is a tool used to edit XAML files. It also displays the visual tree and properties of a control.