Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
Questioninheritance Pin
aratireddy25-Feb-09 0:17
aratireddy25-Feb-09 0:17 
AnswerRe: inheritance Pin
Xmen Real 25-Feb-09 0:26
professional Xmen Real 25-Feb-09 0:26 
AnswerRe: inheritance Pin
Cracked-Down25-Feb-09 0:29
Cracked-Down25-Feb-09 0:29 
AnswerRe: inheritance Pin
PIEBALDconsult25-Feb-09 3:56
mvePIEBALDconsult25-Feb-09 3:56 
Question[Message Deleted] Pin
Prajeesh25-Feb-09 0:16
Prajeesh25-Feb-09 0:16 
AnswerRe: Gradient in Splitter Panel Pin
Xmen Real 25-Feb-09 0:28
professional Xmen Real 25-Feb-09 0:28 
General[Message Deleted] Pin
Prajeesh25-Feb-09 0:34
Prajeesh25-Feb-09 0:34 
GeneralRe: Gradient in Splitter Panel Pin
Xmen Real 25-Feb-09 0:56
professional Xmen Real 25-Feb-09 0:56 
well i checked the code and its working
here is the code


void Panel1_Paint(object sender, PaintEventArgs e)
{

    Graphics Graphics = e.Graphics;
    Rectangle Bounds = new Rectangle(Point.Empty, splitContainer1.Panel1.Size);

    if (Bounds.Width > 0 && Bounds.Height > 0)
    {

        using (Brush GradientBrush = new LinearGradientBrush(Bounds, Color.FromArgb
        (183, 214, 183), Color.FromArgb(221, 235, 221),
        LinearGradientMode.BackwardDiagonal))
        {
            Graphics.FillRectangle(GradientBrush, Bounds);
        }
    }
}

private void Form1_Load(object sender, EventArgs e)
{
    splitContainer1.Panel1.Paint += new PaintEventHandler(Panel1_Paint);
}


TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-i’TV.C\y<pŠjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can

AnswerRe: Gradient in Splitter Panel Pin
0x3c025-Feb-09 0:43
0x3c025-Feb-09 0:43 
QuestionWebcam Application with Capture Image Pin
proans25-Feb-09 0:02
proans25-Feb-09 0:02 
AnswerRe: Webcam Application with Capture Image Pin
proans25-Feb-09 1:04
proans25-Feb-09 1:04 
QuestionClass Pin
mrithula824-Feb-09 23:36
mrithula824-Feb-09 23:36 
AnswerRe: Class Pin
Rob Philpott24-Feb-09 23:40
Rob Philpott24-Feb-09 23:40 
AnswerRe: Class Pin
Cracked-Down24-Feb-09 23:43
Cracked-Down24-Feb-09 23:43 
GeneralRe: Class Pin
Rob Philpott24-Feb-09 23:54
Rob Philpott24-Feb-09 23:54 
AnswerRe: Class Pin
Calin Tatar24-Feb-09 23:43
Calin Tatar24-Feb-09 23:43 
GeneralRe: Class Pin
mrithula825-Feb-09 0:03
mrithula825-Feb-09 0:03 
GeneralRe: Class Pin
Calin Tatar25-Feb-09 0:05
Calin Tatar25-Feb-09 0:05 
QuestionSelect Image Randomly Pin
elci24-Feb-09 23:33
elci24-Feb-09 23:33 
AnswerRe: Select Image Randomly Pin
J4amieC24-Feb-09 23:49
J4amieC24-Feb-09 23:49 
AnswerRe: Select Image Randomly Pin
Calin Tatar25-Feb-09 0:08
Calin Tatar25-Feb-09 0:08 
GeneralRe: Select Image Randomly Pin
elci25-Feb-09 0:30
elci25-Feb-09 0:30 
GeneralRe: Select Image Randomly Pin
Megidolaon25-Feb-09 22:09
Megidolaon25-Feb-09 22:09 
QuestionWant to run dll through server(IIS) Pin
Member 366988924-Feb-09 23:26
Member 366988924-Feb-09 23:26 
AnswerRe: Want to run dll through server(IIS) Pin
Colin Angus Mackay25-Feb-09 3:17
Colin Angus Mackay25-Feb-09 3:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.