public OddRowArgEntry(FontAndColorDefaultsQuickRef parent) : base(parent)
 {
     Name              = EntryNames.OddRowArg;
     LocalizedName     = "Argument in odd row";
     Usage             = ColorUsage.Background | ColorUsage.Foreground;
     DefaultBackground = new[] { new RgbColor(0xC0, 0xC0, 0xC0) };
     DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) };
 }
 public HyperlinkEntry(FontAndColorDefaultsQuickRef parent) : base(parent)
 {
     Name              = EntryNames.Hyperlink;
     LocalizedName     = "Hyperlink";
     Usage             = ColorUsage.Foreground;
     DefaultBackground = new[] { new RgbColor(0xFF, 0xFF, 0xFF) };
     DefaultForeground = new[] { new RgbColor(0x40, 0x40, 0xFF) };
 }
 public EvenRowEntry(FontAndColorDefaultsQuickRef parent) : base(parent)
 {
     Name              = EntryNames.EvenRow;
     LocalizedName     = "Even row";
     Usage             = ColorUsage.Background | ColorUsage.Foreground;
     DefaultBackground = new[] { new RgbColor(0xFF, 0xFF, 0xFF) };
     DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) };
 }
 public DocumentEntry(FontAndColorDefaultsQuickRef parent) : base(parent)
 {
     Name              = EntryNames.Document;
     LocalizedName     = "Entire document";
     Usage             = ColorUsage.Background;
     DefaultBackground = new[] { new RgbColor(0xFF, 0xFF, 0xFF) };
     DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) };
 }
コード例 #5
0
        /// <summary>
        /// Initialization of the package; this method is called right after the package is sited, so this is the place
        /// where you can put all the initialization code that rely on services provided by VisualStudio.
        /// </summary>
        protected override async System.Threading.Tasks.Task InitializeAsync(CancellationToken cancellationToken, IProgress <ServiceProgressData> progress)
        {
            await base.InitializeAsync(cancellationToken, progress);

            // When initialized asynchronously, we *may* be on a background thread at this point.
            // Do any initialization that requires the UI thread after switching to the UI thread.
            // Otherwise, remove the switch to the UI thread if you don't need it.
            // await JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);

            await JoinableTaskFactory.StartOnIdle(delegate
            {
                // ensure that we have instance
                _ = new Shell.FontAndColorDefaultsQuickRef();
                _ = new Shell.ThemeColorsQuickStart();
                ((IServiceContainer)this).AddService(typeof(IFontAndColorDefaultsProvider), this, true);
                SubscribeForColorChangeEvents();
            });
        }