Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~697 People Reached
Favorite Forums
Member Avatar for Johnrocks

Hello I have already managed to use PropertyGrid class and works fine, but no where I can find the autohide feature. I want the PropertyGrid to hide just the way we hide in VS 2008 how to mimic that any property for that. Thanks in advance

0
66
Member Avatar for Johnrocks

Hello All, I have a canvas where I drag and drop a circle,When I select the circle I want to show all is properties in a property window,just like how we see properties of grid button in Visual Studio,No idea how to start with this work with grid, table ,list …

Member Avatar for Antenka
0
169
Member Avatar for Johnrocks

Hello, I want to put all my events in one class file and call them in a main window following is my code in mainwindow.xaml file [CODE] <Window x:Class="WPF123.MainWindow" xmlns:Local="clr-namespace:WPF123"> <Window.CommandBindings > <CommandBinding Command="Local:MyCommands.Print" Executed="PrintCommandHandler" CanExecute="CommandBinding_CanExecute" /> </Window.CommandBindings> ... <Button SmallImageSource="Images\Print.png" ToolTipTitle="Print" Command="Local:MyCommands.Print" /> </Window>[/CODE] mainwindow.xaml.cs [CODE] public MainWindow() { …

Member Avatar for Panathinaikos22
0
146
Member Avatar for Johnrocks

Hello, I want a ribbon Control on top of my window using WPF like how a ribbon control in Office 2007 works I already have designed toolbar as follows <ContentControl Content="{StaticResource MyToolbar}"/> This is how I specify my toolbar design. anyways we can do this by specify ribbon window in …

0
58
Member Avatar for Johnrocks

Hello, I get this error when I try to run my code "Cross-thread operation not valid:Control 'dataGridView1'accesses from a thread other than the thread it was created on" File Name Form.cs I have method call FillDataGrid() [code] FillDataGrid(string msg) { string[] data = msg.split(';'); string Name = data[0]; string LastName …

Member Avatar for Momerath
0
258