コード例 #1
0
ファイル: Profile.cs プロジェクト: poutine70/UCR
 public void AddNewChildProfile(string title)
 {
     if (ChildProfiles == null)
     {
         ChildProfiles = new List <Profile>();
     }
     ChildProfiles.Add(CreateProfile(Context, title, this));
     Context.ContextChanged();
 }
コード例 #2
0
ファイル: Profile.cs プロジェクト: admiralsurf/UCR-DARK
 public void AddChildProfile(Profile profile)
 {
     if (ChildProfiles == null)
     {
         ChildProfiles = new List <Profile>();
     }
     profile.Context       = Context;
     profile.ParentProfile = this;
     ChildProfiles.Add(profile);
     Context.ContextChanged();
 }