znakeeye

Results 24 issues of znakeeye

I'm trying to understand when pass 4 and 5 actually affect the output. Can you please give some example inputs that end up changing `na` and `oa` in these passes?...

In your list of examples, you have this piece of code: ```swift let old = Array("abcd") let new = Array("adbc") let changes = diff(old: old, new: new) // Move "d"...

Like the `ag-grid` [Tree Data](https://www.ag-grid.com/javascript-grid-tree-data/) feature?

We have successfully transformed our `app.config` and `web.config` files. However, for some reason we sometimes get errors on files where we did not expect the transformer to run. E.g. one...

Having support for `enum` flags is great! But sometimes you don't want the user to use the actual enum values. In fact, they could easily be re-factored causing breaking changes...

`ScreenTip` does **not** support rich content, like e.g. `ToolTip` does. ```xaml ``` Thus, you cannot produce nice screen tips like in Excel: ![Rich tooltip](https://user-images.githubusercontent.com/958469/56808624-36e2d680-6832-11e9-89a3-21c003a539a5.png) --- ### Environment - Fluent.Ribbon __v6.x__...

Feature :1st_place_medal:

`RibbonTabControlControlTemplate` should have customizable border thickness. I'd like to remove the border (like in modern Office), but it seems quite tricky due to a mistake in the control template. I...

Feature :1st_place_medal:
help wanted

I have referenced Build nuget packages as shown below. When I try to check in, my `Build` dependent unit tests fail on the build server. I don't get it. **Where...

As shown below, these events are missing. What would be the right way of handling these events when using `WebBrowserCompatible`? ```c# var webBrowser = new WebBrowser(); webBrowser.LoadCompleted += (s, e)...

question :grey_question:
WebView :desktop_computer:

Consider the oldschool `WebBrowser` component. To read/write to an element, you would simply do this: ```c# var htmlDom = (HTMLDocument)webBrowser.Document; var element = htmlDom.getElementById("id"); element.setAttribute("value", "foo"); ``` Now, using `WebBrowserCompatible`...

question :grey_question:
WebView :desktop_computer: