Trevortni

Results 8 comments of Trevortni

> You should get a drag start event I think. And it should contain a starting position. This is in the drag start event. Well, it's in the listener for...

Here's dragging the same object from the same starting point the opposite direction: ![image](https://user-images.githubusercontent.com/5759498/121796826-c72a3400-cbd0-11eb-9035-acf37d20ea7f.png)

I'm pretty sure x and y are the current cursor position.

Do you mean this? ``` public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build().Run(); } public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .ConfigureAppConfiguration((hostingContext, config) => { #if !DEBUG...

> Hi, I am running into the same error in ECS. Locally, from Visual Studio all is working fine and I think the IAM roles are set up correctly in...

Looking at the internal code, it looks like three things would need to be added to make this work: 1. **Else** support could be added by creating `public IList ElseActions`...

> So you're trying to implement row versioning in a database that doesn't support it natively? Unless there's a way to turn it on that I haven't been able to...

> I have a project where I use a trigger to cancel an update if a boolean column is true. Note that it's an "after" trigger. Is there a reason...