Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / Design Time / September 2007

Tip: Looking for answers? Try searching our database.

Datagridview header cells with vertical text

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Roger Tranchez - 12 Sep 2007 16:22 GMT
Hello,

I have a datagridview with lots of columns selectable with a checkbox
control, and I would like to have its header text as narrow as a check box,
but for this I have to display its text vertically...

How can I achieve this ?

Very thanks in advance !
Signature

Roger Tranchez
MCTS
.NET 2005 and DB developer

Linda Liu [MSFT] - 13 Sep 2007 04:41 GMT
Hi Roger,

Sorry that I may not understand your question exactly. Could you please
explain more about your question?

Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Roger Tranchez - 13 Sep 2007 11:32 GMT
Hello,

Here's an example:

You can see below a datagridview with two columns with their header text
"text1" and "text2". The values for these columns are boolean, so I use the
checkbox to introduce the values (represented by Xs) as follows:

t    t
e    e
x    x
t    t
1    2    ...
--------------------------------------------------------
X    X

As you can see, the header text are "vertically oriented" because I want to
make the best use of the form's space (I will have LOTS of checkbox columns)  
... and I don't know how to achieve this "vertical effect".

I hope you can understand what I mean.

Thanks,

Signature

Roger Tranchez
MCTS
.NET 2005 and DB developer

> Hi Roger,
>
[quoted text clipped - 24 lines]
>  
> This posting is provided "AS IS" with no warranties, and confers no rights.
Roger Tranchez - 13 Sep 2007 15:46 GMT
I'm sorry but I have to make a correction:

the header text must go from bottom to top:

imagine you have a book in front of you, and you rotate it 90 degrees
counter-clockwise. This is the orientation I want for the text in the headers
(you will read it from bottom to top, letters will be 90 degrees-rotated)

Thanks,

Roger

Signature

Roger Tranchez
MCTS
.NET 2005 and DB developer

> Hello,
>
[quoted text clipped - 48 lines]
> >  
> > This posting is provided "AS IS" with no warranties, and confers no rights.
Linda Liu [MSFT] - 14 Sep 2007 10:04 GMT
Hi Roger,

Thank you for your reply and detailed explanation! I can understand your
question now.

Firstly, to custom draw a DataGridView, we need to handle its CellPainting
event.

Secondly, to draw a vertical oriented text, we could call the
Graphics.DrawString(string,Brush,RectangleF,StringFormat) method passing an
instance of StringFormat with a DirectionVertical format flag to this
method. For example:

System.Drawing.StringFormat drawFormat = new System.Drawing.StringFormat();
drawFormat.FormatFlags = StringFormatFlags.DirectionVertical;
// g is a Graphics object. The text "hello" will be drawn in vertical
orientation
g.DrawString("hello", this.Font, Brushes.Orange, new PointF(0,
0),drawFormat);

Unfortunately, the reading direction of the text "hello" would be from top
to bottom using the above method, which doesn't meet your requirement.

A solution is to call the Graphics.TranslateTransform and RotateTransform
methods to get what you want. The following is a sample.

void dataGridView1_CellPainting(object sender,
DataGridViewCellPaintingEventArgs e)
   {
           if (e.RowIndex == -1 && e.ColumnIndex >= 0)
           {
               e.PaintBackground(e.ClipBounds, true);
               Rectangle rect =
this.dataGridView1.GetColumnDisplayRectangle(e.ColumnIndex, true);
               Size titleSize =
TextRenderer.MeasureText(e.Value.ToString(), e.CellStyle.Font);
               if (this.dataGridView1.ColumnHeadersHeight <
titleSize.Width)
                   this.dataGridView1.ColumnHeadersHeight =
titleSize.Width;

               e.Graphics.TranslateTransform(0, titleSize.Width);
               e.Graphics.RotateTransform(-90.0F);
             
               e.Graphics.DrawString(e.Value.ToString(), this.Font,
Brushes.Orange, new PointF(rect.Y, rect.X));

               e.Graphics.RotateTransform(90.0F);
               e.Graphics.TranslateTransform(0, -titleSize.Width);
               e.Handled = true;
           }
  }

In addition, you could set the AutoSizeColumnsMode property of the
DataGridView to AllCellsExceptHeader in order to make the DataGridView
compact.

Hope this helps.
If you have any question, please feel free to let me know.

Sincerely,
Linda Liu
Microsoft Online Community Support
Roger Tranchez - 14 Sep 2007 10:26 GMT
Hello,

Really thanks for your answer; old Boss Bill can be proud of you 8-D.

I'll implement it  this way.

Signature

Roger Tranchez
MCTS
.NET 2005 and DB developer

> Hi Roger,
>
[quoted text clipped - 59 lines]
> Linda Liu
> Microsoft Online Community Support

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.