예제 #1
0
            public static SettingsView Create(Project d, ProjectDOM.Settings c)
            {
                if (d == null)
                {
                    throw new ArgumentNullException(nameof(d));
                }
                if (c == null)
                {
                    throw new ArgumentNullException(nameof(c));
                }


                return(new SettingsView(d, c));
            }
예제 #2
0
 private SettingsView(Project d, ProjectDOM.Settings c)
 {
     _Parent = d;
     _Source = c;
 }