Die haben vielleicht ein Spaß!
Der Jonas und die Jara.
Using the standard Microsoft .NET 2.0 WinForms PropertyGridControl control, I was looking for a way to set the size of the two columns (one for the labels, one for the values) so that I can control better how the values are displayed.
After some research with ILSpy on the .NET sources, I found a way to use with reflection. The following helper method can be used for this task:
public static void ResizePropertyGridSplitter(
PropertyGrid propertyGrid,
int labelColumnPercentageWidth)
{
var width =
propertyGrid.Width*(labelColumnPercentageWidth/100.0);
// Go up in hierarchy until found real property grid type.
var realType = propertyGrid.GetType();
while (realType!=null && realType != typeof(PropertyGrid))
{
realType = realType.BaseType;
}
var gvf = realType.GetField(@"gridView",
BindingFlags.NonPublic |
BindingFlags.GetField |
BindingFlags.Instance);
var gv = gvf.GetValue(propertyGrid);
var mtf = gv.GetType().GetMethod(@"MoveSplitterTo",
BindingFlags.NonPublic |
BindingFlags.InvokeMethod |
BindingFlags.Instance);
mtf.Invoke(gv, new object[] { (int)width });
}
Call the function and pass your PropertyGrid instance and width values between e.g. 10 and 90 to resize the first column to the given percentage value.
E.g.:
ResizePropertyGridSplitter( myPropGrid, 75 );
If you specify a too small or too large value, the PropertyGrid seems to use the minimum/maximum possible, based on your passed value.
Die Jana sagt, es hat ihr gut geschmeckt!

Und für mich gab’s Gorgonzola.
Seit mehreren Jahren habe ich ein DECT-Headset GN9350. Das betreiben wir an einer Alcatel-Anlage mit einem Endgerät 4039.
Da ich von Zeit zu Zeit immer wieder mal neu konfigurieren muss, hier für mich als Erinnerung mal die Anleitung, was zu tun ist beim Konfigurieren:
Wichtige Hinweise:
Die Anleitung gibt’s auch so ähnlich als PDF. Ein Handbuch zum GN Netcom GN9350 findet sich hier.
Nachdem es uns viel Spaß gemacht hat, Janas Schwangerschaftserlebnisse im Schwangerschaftstagebuch-Blog zu dokumentieren, liegt die Überlegung nahe, das adäquat fortzusetzen.
Gesagt, getan, „koscht ja nix“ wie der Schwabe sagt. Deshalb:
ist ab sofort der Platz der Wahl wenn es darum geht, die Entwicklung eines Kindes zu verfolgen, vermutlich auch die Verwandlung von 2 Personen in Eltern. Das kann spannend werden, zumindest für uns.
Ich freue mich, wenn Ihr ab und zu mal vorbeischaut.
Es ist unfassbar (zumindest für mich): Jana und Uwe sind Eltern geworden. Kurzfassung:


Ich bin komplett hin-und-weg, alles ziemlich unfassbar. Unglaublich schönes Gefühl!
Frohen, kommerzfreien Muttertag allen Müttern und zukünftigen Müttern wünsche ich!

Möge die Macht mit Euch sein.
Super einfach via Registry-Skript:
Ggf. als Administrator ausführen. Danach abmelden und wieder anmelden (bzw. Rechner neu starten), damit es wirksam wird.
If you are looking for a way to subclass a standard file open dialog from .NET, take a look at the Vista Bridge Sample Library from Microsoft.
„Subclassing“ (or „Extending“, „Customizing“) refers to adding new controls to the bottom of the standard Windows dialog like following, to extend it:

Although the examples are for WPF, I guess it is rather simple to migrate them to WinForms (.NET 2.0).