コード例 #1
0
        public static void ImportAndAppend(this BrushFactory brushFactory, string brushName, string brushFile, string appendBrushName)
        {
            brushFactory.LoadBrushFile(brushFile);
            var brush       = brushFactory.GetBrush(brushName);
            var appendBrush = brushFactory.GetBrush(appendBrushName);

            brush.AppendFrom(appendBrush);
        }