0

我有三个用于绘制不同类型位图的 Windows 库。它们的共同点是:字体、颜色和钢笔。

我想设计一个库,我可以拥有所有标准字体、颜色和笔,这样如果我进行字体更改,它将在所有其他库中全局更改。

例如:我有三个在位图上绘制的库,它们都使用这些相同的设置:

      internal static readonly Font ELEVATION_FONT = new Font("Segoe UI Semibold", 7.9f),
                                  DETAIL_BOX_FONT = new Font(FontFamily.GenericSerif, 8f, FontStyle.Regular);//"Palatino Linotype"

    internal static readonly Color BACK_COLOR_SCREEN = Color.Black,
                                   LINE_COLOR_SCREEN = Color.FromArgb(161, 161, 161),
                                   BACK_COLOR = Color.White,
                                   LINE_COLOR = Color.Black;

我想创建一个名为 MySoluctionNameDrawing 的库,以及使用这些设置在位图上绘图的所有其他库,它们将使用来自 MySoluctionNameDrawing 的库。

这也是为了可维护性。

MySolutionName 只是我的解决方案的名称,但我相信你明白我的意思是为了演示目的。

任何人都有任何想法,作为将我所有的绘图相关工具放在一个库中并从其他库访问它们而不会造成混乱的最简单和最干净的方法?


这是我想出的。

绘图 DLL

namespace AlumCloudDrawing
    {

        public static class DrawingOptions
        {
            public static readonly Font ELEVATION_FONT = new Font("Segoe UI Semibold", 7.9f),
                                            DETAIL_BOX_FONT = new Font(FontFamily.GenericSerif, 8f, FontStyle.Regular);//"Palatino Linotype"      


            public static readonly Color BACK_COLOR_SCREEN = Color.Black,
                                                 LINE_COLOR_SCREEN = Color.FromArgb(161, 161, 161),
                                                 BACK_COLOR = Color.White,
                                                 LINE_COLOR = Color.Black;
        }
    }

来自依赖于绘图 dll 库的库的用法参考。

 internal static readonly Font ELEVATION_FONT = AlumCloudDrawing.DrawingOptions.ELEVATION_FONT,
                                  DETAIL_BOX_FONT = AlumCloudDrawing.DrawingOptions.DETAIL_BOX_FONT;

    internal static readonly Color BACK_COLOR_SCREEN = AlumCloudDrawing.DrawingOptions.BACK_COLOR_SCREEN,
                                   LINE_COLOR_SCREEN = AlumCloudDrawing.DrawingOptions.LINE_COLOR_SCREEN,
                                   BACK_COLOR = AlumCloudDrawing.DrawingOptions.BACK_COLOR,
                                   LINE_COLOR = AlumCloudDrawing.DrawingOptions.LINE_COLOR;
4

1 回答 1

1

我通常遵循这种模式

/src
    FooApp.sln                       -- solution file
    /apps                            -- folder for apps
        /FooApp.Core                 -- core project
        /FooApp.Drawing1             -- project that references core
        /FooApp.Drawing2             -- project that references core    
    /tests                           -- tests
        /FooApp.Core.Test
        /FooApp.Drawing1.Test
        /FooApp.Drawing2.Test
于 2013-05-02T22:29:34.440 回答