I'm not sure if this is the right place to ask, but is there a way to produce a print out of a solution which includes the source code but displays the forms as graphics (i.e., how they appear when painted) instead of or in addition in a textual form? A quick Google search came up with PrettyCode.Print by SubMain but it describes the forms as lists of their properties. For example,
Is there way to show this graphically, other than cuting and pasting screen shots?
Code:
//
// btnHello
//
this.btnHello.Location = new System.Drawing.Point(57, 184);
this.btnHello.Name = "btnHello";
this.btnHello.Size = new System.Drawing.Size(187, 43);
this.btnHello.TabIndex = 0;
this.btnHello.Text = "Say Hello";
this.btnHello.UseVisualStyleBackColor = true;
this.btnHello.Click += new System.EventHandler(this.btnHello_Click);
Is there way to show this graphically, other than cuting and pasting screen shots?