Johannes Zellinger
Johannes Zellinger
I call the following Method in my `UpdateCheckManager` class after a usercontrol load event: ``` public static class UpdateCheckManager { #region Public Methods public static async Task CheckForUpdates(IProgress progressReport) {...
I have a ListView with a GridView containing a templated columns. I want to add the following style property to my listview: ``` ``` This works, however the base style...
I'm using a Splitbutton to add 'Configurations' based on the dropdown selection of the user in my software. I would like to display the name of the current configuration as...
In my Minio wrapper class I am using a function to add callbacks for notifications as follows: ```c# public void AddObjectEventListener(string name, Func callback, CancellationToken ct) { _logger.LogDebug("Listening for Object...
I have a minio wrapper class for my application utilizing the minio-dotnet sdk. One of the functions is as follows: ``` public void AddObjectEventListener( string userID, string datasetID, string name,...
I have two repos `A` and `B` in the same organization on our self-hosted Github enterprise instance. Repo `B` is a dependency for the code in repo `A`, so I...