|
You are here |
www.xamboy.com | ||
| | | | |
accessibledreams.home.blog
|
|
| | | | | Cologne, German Beers, German Fairgrounds and loads of fun! 25th October I had a talk at Expert Day for Xamarin. I flew in from an evening flight on the 24th straight after Microsoft TechDays in Sweden. I missed the speaker's dinner but when I arrived at the Microsoft offices on the 25th I knew I... | |
| | | | |
xamgirl.com
|
|
| | | | | In the first part of this article, I showed different tips when creating a custom control, in this part I'll be covering some additional tips. As in the previous article, I'm NOT going to show you how to create a custom control (if you want to learn about that you can read thisgreat article by ... | |
| | | | |
flowbased.de
|
|
| | | | | [AI summary] A tutorial demonstrates how to use MultiBinding and a custom converter to manage multiple visibility values for a control in Windows Presentation Foundation (WPF). | |
| | | | |
jinyuz.dev
|
|
| | | Often, I forget how to display the raw SQL of a queryset in Django. This is a quick and easy example of how to do it from django.contrib.auth.models import User qs = User.objects.all() print(qs.query) SELECT "auth_user"."id", "auth_user"."password", "auth_user"."last_login", "auth_user"."is_superuser", "auth_user"."username", "auth_user"."first_name", "auth_user"."last_name", "auth_user"."email", "auth_user"."is_staff", "auth_user"."is_active", "auth_user"."date_joined" FROM "auth_user" | ||