Tom's Tech Blog

  • Home
  • Privacy Policy
  • Tools
  • Overview
  • Some VisualStudio snippets
  • funny code
  • About

Adventures with DelayedAction (C#)

  • Thomas Kison
  • November 17, 2021
  • C#
Today I worked on a project and found a piece of code, that left me wondering what the one who wrote it was actually thinking this should do. I know what the...
Read More

What’s wrong with those ObservableCollections and Threading?

  • Thomas Kison
  • April 27, 2021
  • Async
When you are developing Apps with Xamarin.Forms you probably used ObservableCollections more than once. That’s pretty neat, because an ObservableCollection notifies the View on any changes that occur, so you don’t have...
Read More

Using async/await in an IValueConverter in Xamarin.Forms

  • Thomas Kison
  • November 28, 2020
  • C#
Let’s start out with a very simple Setting – we have the following Models:Product+ Id : string+ Name: string+ Image: Image Image+ Id: string+ Filename: string In our service layer, we have...
Read More
Flyout in Xamarin forms

Creating a Flyout in Xamarin.Forms

  • Thomas Kison
  • November 8, 2020
  • C#
Flyouts are a pretty neat control, first introduced in Windows UWP, but there is nothing close in Xamarin.Forms which can be used on all platforms. So I decided to create one. What...
Read More

How to find the root Page of a specific Control in Xamarin.Forms

  • Thomas Kison
  • November 4, 2020
  • C#
Actually it’s very easy to achieve this. Just traverse the visual tree upwards to find the root. This does what we intended to do, but… we can do better than that!Maybe we...
Read More

Supported Linq query expressions in Realm

  • Thomas Kison
  • July 6, 2020
  • C#
Sooner or later, you’ll come to the point, that you don’t only want to get objects by Id or the whole set of objects of a specific type in Realm. The easiest,...
Read More

User Access Management in Realm

  • Thomas Kison
  • June 4, 2020
  • C#
As I already stated before, I love Realm.io. It’s a pretty cool object oriented database, with a very mighty synchronization mechanism, that helps you build mobile apps just right out of the...
Read More

Using Realm Notifications in .Net

  • Thomas Kison
  • May 13, 2020
  • C#
There is a documentation on Realm.io, that describes how to hook up on a ROS (Realm Object Server) to observe changes on specific Realms, RealmObjects or whole instances. So there is no...
Read More
Performance of loading Xaml dynamically in Xamarin.Forms

Performance of loading Xaml dynamically in Xamarin.Forms

  • Thomas Kison
  • April 22, 2020
  • C#
As I mentioned in a previous post, you can quite easily load Xaml dynamically in your Xamarin.Forms App. But how about performance? How long does it take in comparison to “regular” loading...
Read More
Never ever use Task.Result in Xamarin.Forms! Why?

Never ever use Task.Result in Xamarin.Forms! Why?

  • Thomas Kison
  • April 21, 2020
  • Async
I recently stumbled over a deadlock in our code. Someone called a method, that returned a Task, and instead of awaiting it, he called: I reason for this code was just plain...
Read More

Posts navigation

1 2 3 Next

Recent posts

Adventures with DelayedAction (C#)
What’s wrong with those ObservableCollections and Threading?
Using async/await in an IValueConverter in Xamarin.Forms
Flyout in Xamarin forms
Creating a Flyout in Xamarin.Forms
How to find the root Page of a specific Control in Xamarin.Forms

Recent Comments

  • José Manuel Nieto Sánchez on Using async/await in an IValueConverter in Xamarin.Forms
  • Performance of loading Xaml dynamically in Xamarin.Forms | kison.info on Dynamically create controls in Xamarin Forms
  • Copy an entire synced Realm | kison.info on read and write properties on dynamic objects in .NET/C#
  • Copy an entire synced Realm | kison.info on C# Creating Types during runtime (.Net Core)
  • Blake Pell on Error 0xC000041D using GetCallingAssembly()

Archives

  • November 2021
  • April 2021
  • November 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • February 2020
  • November 2019
  • October 2019
  • August 2019
  • July 2019

Categories

  • .Net native
  • About me
  • Arduino
  • Async
  • C#
  • dynamic
  • Events
  • iOS
  • IOT
  • Realm
  • Reflection
  • Resources
  • TPL
  • Uncategorized
  • ViewModels
  • Xamarin.Forms
  • Xaml

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Copyright © All Rights Reserved.
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Cookie settingsACCEPT
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT
  • About
  • Tools
  • Overview
  • Some VisualStudio snippets
  • funny code
  • Privacy Policy