SC20260: LCD Display

I am porting G120 LCD code to SC2020.
Can anyone point me to a example code for SC20260 like the G120 one below

        using (Bitmap LCD = new Bitmap(SystemMetrics.ScreenWidth, SystemMetrics.ScreenHeight))
        {
            using (Bitmap PowerUpBack = new Bitmap(Resources.GetBytes(Resources.BinaryResources.threads), Bitmap.BitmapImageType.Jpeg))
            {
                LCD.DrawImage(0, 0, PowerUpBack, 0, 0, SystemMetrics.ScreenWidth, SystemMetrics.ScreenHeight);
            }
           
			int XPos = 250;
			int YPos = 125;
			int YPosInc = 20;

This should help Graphics