|
|
Browse by Tags
All Tags » Microsoft » .NET 3.5
Showing page 1 of 2 (14 total posts)
-
Came across this issue on the project I’ve been working on. When resizing a form that contained the System.Windows.Forms.Integration.ElementHost control to host WPF content inside a Windows Forms control, we noticed that the new screen real estate inside the ElementHost was not redrawn at all. Rather it just left a black border around the original ...
-
Finally managed to figure out how to get virtualization to actually behave itself in a listbox wpf control.
Turns out that in order for Virtualization to work, you need three things satisfied.
1) Use a control that supports virtualization (e.g. list box or list view). (see Controls That Implement Performance Features section at bottom of ...
-
Even though x:Name is a dependency property for a WPF framework element, you cannot the name of the control to a static resource in the code behind file <Window x:Class="WpfApplication2.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
-
A while ago on the project I’ve been working on recently, I was having issues with my development environment which for some reason had stopped wanting to deploy our database project to my newly created sql server 2008 instance.
This was on a new build of a machine that I had previously used, but had decided to upgrade the operating system on. As ...
-
There's 2 products (both with free versions) you can use for T4 intellisense:
One is by Clarius at http://www.visualt4.com/. But best to go with Tangible's T4 editor at http://t4-editor.tangible-engineering.com/T4-Editor-Visual-T4-Editing.html (available through the Extension Manager in VS2010 under tools).
Also if you want to get a bit more ...
-
Most versions of snoop that I keep coming across have a problem updating the UI dynamically at runtime via the SNOOP property grid editor. Felix Corke recently pointed me in the direction of a fixed version…
http://snoopwpf.codeplex.com/
The most recent version 2.6.0, now just works out of the box. No longer do you have 4 versions for the ...
-
Recently I discovered that the reset window layout menu option in most flavours of visual studio (at least 2008 and 2010), respects the layout that your workspace was in at the time of exporting your environment settings.
This is down to the fact that under the general settings tree view node in the export dialog, the Window Layouts option is ...
-
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.IO;
namespace DataSetSerializer
{
class Program
{
static void Main(string[] args)
...
-
Probably have sent this before in some form, but noticed someone else blogging about it,
http://www.publicvoid.dk/CommerceServerCatalogsAndIClassType.aspx
I can never remember what the different class types in the catalog table means, and finding the information in the documentation takes forever, so here they are for my own benefit more than ...
-
For those who like me didn’t know about this hidden gem:
You can now set Tracepoints instead of just Breakpoints in VS2008. Here’s the difference between the two as described on MSDN:
“Breakpoints tell the debugger that an application should break, pause execution, at a certain point. When a break occurs, your program and the ...
1
|
|
|