For the first time this year, the Seattle Code Camp (April 17-18) is providing live video for many of its sessions within a virtual event. C#, .NET & Silverlight, database, architecture, and other...
I'm not sure if a scrollviewer is the way to go or not... but in general you will want to look into WPF controls that provide virtualization features by default (ListBox and ListView). As you already...
I don't think I am following you very well. I assumed from your original post that you were trying to take some existing Windows Forms code and port it over to WPF. Are we both talking WPF here or...
Look into using the ItemTemplate for the ListView. This defines what controls will be rendered for each item. Check out MSDN for more details. If your new to WPF and templating in general, definitely...
Is the data provider hooked up to anything in XAML at all or is it just used in your code? If it is just used in your code, the data may not be loaded as you would expect. Try setting IsAsynchronous...
I assume that you are talking about working in the XAML Design view? One way to switch tabs is to set the SelectedIndex of the TabControl in the Properties window.
Setup:
1) Put all the combo boxes within some sort of container, like a StackPanel
2) Assign the Companies business object to the DataContext for the StackPanel
1) Create a handler for the DataGrid.AutoGeneratingColumn event
2) In the DataGrid.AutoGeneratingColumn event, examine the column header values looking for the one you...
You're right when you say that the company you work for can have everything to do with what database-related chores are available for you to work on. Some small companies (or just small projects...
You need to set the IsTabStop property on the individual DataGridCell items, which you can do by setting the DataGridTextColumn.CellStyle. Something like the following should work:
I can't fully answer your question for all platforms, but adding bookmarks via a link on a Webpage via JavaScript is a no-go at least for Windows Mobile 5.
I think that most modern mobile phones (I think that is what you are referring to by mobile device) can handle encryption and decryption of data just fine from a resource perspective. We would...
I just learned that the format of VB colors is BBGGRR rather than .NETs AARRGGBB, so something like the following may help get all your color bits lined up: