private void CreateSecondMark(int scrollBarWid) { int w = scrollBarWid - 1; int h = scrollBarWid - 2; Bitmap2 b = new Bitmap2(w, h); GraphUtil.FillShadedRectangle(b, w, h); secondMark = b; secondMarkHighlight = b.Lighter(); secondMarkPress = b.Darker(); }
private void CreateBar(int scrollBarWid, int width) { int w = CalcBarSize(width); int h = scrollBarWid - 2; Bitmap2 b = new Bitmap2(w, h); GraphUtil.FillShadedRectangle(b, w, h); bar = b; barHighlight = b.Lighter(); barPress = b.Darker(); }
private void CreateFirstMark(int scrollBarWid) { int w = scrollBarWid - 2; int h = scrollBarWid - 1; Bitmap2 b = new Bitmap2(w, h); GraphUtil.FillShadedRectangle(b, w, h); Bitmap2 bh = b.Lighter(); Bitmap2 bp = b.Darker(); firstMark = b; firstMarkHighlight = bh; firstMarkPress = bp; }