Lave_lei
Lave_lei
@jianxuanbing 请问是怎么生效的呢? ```cshrap _defaultTitleStyle.FillBackgroundColor = Red.Index; _defaultTitleStyle.FillForegroundColor = Red.Index; ``` 我像上面这么写也没有生效,样式中除了背景色其他都生效了
好吧... 是还需要设置填充样式才会填充 ```csharp _defaultTitleStyle.FillPattern = FillPattern.SolidForeground; ```
After my debug, I found the engine.Options.PreRenderCallbacks.Count always equal 0, although I use '.Add(t => System.Console.WriteLine("1"))' manually.
Hi, @toddams I find this problem, in source code of method `AddRazorLight`: ``` services.AddSingleton(p => { var engine = engineFactoryProvider(); AddEngineRenderCallbacks(engine, p); return engine; }); ``` Method `AddEngineRenderCallBacks` be called...
Hi, @reponemec , i got the same issue, are you found a solution about this? Thanks!