Search results for '�������揭幕战 ( 世界杯��定��站 KL99.cc )世界杯���幕战 世界杯揭��战 ac'

Design Principals in Practice: Desire Lines "A Desire Line (or Desire Path) is the shortest or easiest way to get from where you are to where you want to be. In the physical world we can see these in parks or grassed areas as paths worn away by ..." Type: Post
Tags : design, usability, ux, ui, desire lines, design principals in practice
http://dontcodetired.com/blog/post/Design-Principals-in-Practice-Desire-Lines
Creating an “Add New” Item Template in a Windows 8 App ListView "A common UI pattern is to have a list of things on screen and at the end of the list have a plus icon (or something) that triggers your “add new item” code. For example, in the Weather app: For examp ..." Type: Post
Tags : windows 8 apps, windows 8, xaml, ui
http://dontcodetired.com/blog/post/Creating-an-e2809cAdd-Newe2809d-Item-Template-in-a-Windows-8-App-ListView
Refactoring an Azure Functions App to use Function Monkey "In a previous post I took a first look at the Function Monkey library to define Azure Functions using commands and handlers. In this post I’m going to try and take an existing functions app and conver ..." Type: Post
Tags : azure, azure functions, serverless, .net, C#
http://dontcodetired.com/blog/post/Refactoring-an-Azure-Functions-App-to-use-Function-Monkey
Azure Functions Continuous Deployment with Azure Pipelines: Part 3 - Creating an Initial Build Pipeline This is the third part in a series demonstrating how to setup continuous deployment of an Azure Func Type: Post
Tags : funcpipeseries, azure, azuredevops, azure functions, c#
http://dontcodetired.com/blog/post/Azure-Functions-Continuous-Deployment-with-Azure-Pipelines-Part-3-Creating-an-Initial-Build-Pipeline
Design Principals in Practice: Typography in a Grocery Store Window "I recently saw this notice in a local grocery store window: So it’s pretty ugly from a purely aesthetic point of view. But more than that, I don’t feel that it effectively communicates the message. ..." Type: Post
Tags : design, ux, design principals in practice, typography
http://dontcodetired.com/blog/post/Design-Principals-in-Practice-Typography-in-a-Grocery-Store-Window
Checking if a given Type implements a specific interface "There is possibly a framework method to do this but… private bool IsInterfaceImplemented(Type typeToCheck, Type interfaceToFind){Type[] interfaces = typeToCheck.GetInterfaces();foreach (Type iface in ..." Type: Post http://dontcodetired.com/blog/post/Checking-if-a-given-Type-implements-a-specific-interface
ICYMI C# 9 New Features: Adding foreach Support To Any Type This is part of a series of articles on new features introduced in C# 9. Prior to C# 9 you could add Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Adding-foreach-Support-To-Any-Type
Dear Windows Phone Back Button "It seems that the back button is the latest hip thing to complain about with Windows Phone, with rumours about Microsoft dropping the hardware back button and then not. As a Windows Phone app develope ..." Type: Post
Tags : windows phone
http://dontcodetired.com/blog/post/Dear-Windows-Phone-Back-Button
Intercepting and Overriding the Back Button in Windows Phone 8 Apps "If you want to prevent the default action happening when a user presses the back button on a Windows Phone you can override the OnBackKeyPress method in your page. To prevent the default back behaviou ..." Type: Post
Tags : windows phone, apps, ux
http://dontcodetired.com/blog/post/Intercepting-and-Overriding-the-Back-Button-in-Windows-Phone-8-Apps
Using the Xbox Music API in Universal Windows Apps "The Xbox Music API can be used by third party developers (i.e. you and me) to search for artists, songs, albums, etc and also get access to actually play songs. There are two flavours at present: “una ..." Type: Post
Tags : windows store, windows phone, universal apps, c#, xbox
http://dontcodetired.com/blog/post/Using-the-Xbox-Music-API-in-Universal-Windows-Apps
Microsoft Feature Flags: Implementing Custom Feature Filters (Microsoft.FeatureManagement) This is part four in a series of articles. In part three I introduced the concept of feature filters Type: Post
Tags : .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Microsoft-Feature-Flags-Implementing-Custom-Feature-Filters-(MicrosoftFeatureManagement)
2013 - Accomplishments, Failures, Learnings, and Thanks "I started 2013 by quitting my job, and during the remainder of the year I learned a lot, made the odd mistake, and accomplished a few things. This is the obligatory end-of-year post, I hope it will in ..." Type: Post
Tags : end of line
http://dontcodetired.com/blog/post/2013-Accomplishments-Failures-Learnings-and-Thanks
Understanding Azure Durable Functions - Part 7: The Function Chaining Pattern This is the seventh part in a series of articles. If you’re not familiar with Durable Function Type: Post
Tags : C#, azure, azure functions, durable functions, serverless, .net, durfuncseries
http://dontcodetired.com/blog/post/Understanding-Azure-Durable-Functions-Part-7-The-Function-Chaining-Pattern
Arrange Act Assert Comments in Tests "The Arrange, Act, Assert (AAA) pattern is used in tests to help organise and clarify test code. It can also help to spot potential problems in test code if these three phases don’t seem to exist. The ..." Type: Post
Tags : testing, c#
http://dontcodetired.com/blog/post/Arrange-Act-Assert-Comments-in-Tests
Portable Class Library (PCL) Timer when Targeting Both Windows 8 and Windows Phone using Reactive Extensions "Currently the Timer class is not available when targeting both Windows Phone 8 and Windows 8 Store Apps. For the app I’m building I want the MVVMLight PCL ViewModel to update a property every second – ..." Type: Post
Tags : c#, pcl, rx, reactive extensions, windows store apps, windows phone apps, windows 8 apps
http://dontcodetired.com/blog/post/Portable-Class-Library-(PCL)-Timer-when-Targeting-Both-Windows-8-and-Windows-Phone-using-Reactive-Extensions
One Simple Technique to Help Achieve Your Goals "As the New Year approaches and people start to comment “I can’t believe it’s November”, thoughts start to turn to New Year’s Resolutions and things not accomplished in this year. Whilst I don’t believ ..." Type: Post
Tags : productivity, profession, personal development
http://dontcodetired.com/blog/post/One-Simple-Technique-to-Help-Achieve-Your-Goals
Design Principals in Practice: Proximity in Peregrine "The Gestalt Principals help us to understand human perception. The application of these principals can help us create better user interfaces and improve the overall user experience. The Problem Peregr ..." Type: Post
Tags : ui, ux, gestalt principals, design principals in practice, design
http://dontcodetired.com/blog/post/Design-Principals-in-Practice-Proximity-in-Peregrine
Accessing Entity Framework Entities In EntityDataSource Data-Bound Controls "If using ASP.NET EntityDataSource and databound controls you may need to access the actual entity object being represented in the control, e.g. a data row in a table or a single entity in a FormView. ..." Type: Post
Tags : .net, c#, asp.net, extension methods, web, databinding, entity framework, ef, orm, object relational mapping
http://dontcodetired.com/blog/post/Accessing-Entity-Framework-Entity-In-EntityDataSource-Data-Bound-Controls
Building the Right Thing with TestStack "My newest Pluralsight course was just released today: Building the Right Thing in .NET with TestStack. TestStack is a suite of tools to help the team build better software. The super-friendly members ..." Type: Post
Tags : pluralsight courses, teststack
http://dontcodetired.com/blog/post/Building-the-Right-Thing-with-TestStack
Updating Your Windows 8 App to Windows 8.1: Handling Widths and Replacing Snapped Mode "Windows 8.1 allows users to resize Windows more freely than Windows 8.0. In Windows 8.0 there was the concept of snapped, filled and full screen viewstates. These concepts are no more in Windows 8.1 a ..." Type: Post
Tags : windows 8 apps
http://dontcodetired.com/blog/post/Updating-Your-Windows-8-App-to-Windows-81-Handling-Widths-and-Replacing-Snapped-Mode