예제 #1
0
        public Ambience(Model model)
        {
            if (model == null)
                throw new ArgumentNullException("The Model is 'null'");

            //set default ambience
            mBackgroundColor = Color.WhiteSmoke;
            mBackgroundType = CanvasBackgroundTypes.FlatColor;
            mGradientColor1 = Color.WhiteSmoke;
            mGradientColor2 = Color.SteelBlue;
            mModel = model;
        }
예제 #2
0
 public void DetachFromModel(Model model)
 {
     throw new System.NotImplementedException();
 }