Tutorial by Examples: dictionary

Set dict = CreateObject("Scripting.Dictionary") Tools> References> Microsoft Scripting Runtime Associated DLL: ScrRun.dll Source: Windows OS Scripting.Dictionary object MSDN-Dictionary Object
Dictionary consists of key-value pairs.It is enclosed by curly braces {} and values can be assigned and accessed using square brackets[]. dic={'name':'red','age':10} print(dic) #will output all the key-value pairs. {'name':'red','age':10} print(dic['name']) #will output only value with 'nam...
Having lots of styles in App.xaml will quickly become complex, so they can be placed in separate resource dictionaries. In order to use the dictionary, it must be merged with App.xaml. So, in App.xaml, after the resource dictionary has been created: <Application xmlns="http://s...
Snippet from MainPage.xaml <Page x:Class="MyNewApp.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:MyNewApp" xmlns:d="http...

Page 4 of 4