コード例 #1
0
ファイル: SLEffectList.cs プロジェクト: nunezger/berkeleyshoe
 private void SetAllNull()
 {
     this.Glow       = new SLGlow(this.listThemeColors);
     this.Shadow     = new SLShadowEffect(this.listThemeColors);
     this.Reflection = new SLReflection();
     this.SoftEdge   = new SLSoftEdge();
 }
コード例 #2
0
ファイル: SLSoftEdge.cs プロジェクト: mousetwentytwo/test
        internal SLSoftEdge Clone()
        {
            SLSoftEdge se = new SLSoftEdge();
            se.HasSoftEdge = this.HasSoftEdge;
            se.decRadius = this.decRadius;

            return se;
        }
コード例 #3
0
ファイル: SLSoftEdge.cs プロジェクト: nunezger/berkeleyshoe
        internal SLSoftEdge Clone()
        {
            SLSoftEdge se = new SLSoftEdge();

            se.HasSoftEdge = this.HasSoftEdge;
            se.decRadius   = this.decRadius;

            return(se);
        }
コード例 #4
0
ファイル: SLEffectList.cs プロジェクト: mousetwentytwo/test
 private void SetAllNull()
 {
     this.Glow = new SLGlow(this.listThemeColors);
     this.Shadow = new SLShadowEffect(this.listThemeColors);
     this.SoftEdge = new SLSoftEdge();
 }