forked from Redth/PushSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindowsFluent.cs
1403 lines (1268 loc) · 75.6 KB
/
WindowsFluent.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PushSharp.Windows
{
public static class WindowsFluent
{
public static WindowsToastNotification ForChannelUri(this WindowsToastNotification notification, string channelUri)
{
ValidateUri(channelUri);
notification.ChannelUri = channelUri;
return notification;
}
public static WindowsTileNotification ForChannelUri(this WindowsTileNotification notification, string channelUri)
{
ValidateUri(channelUri);
notification.ChannelUri = channelUri;
return notification;
}
public static WindowsRawNotification ForChannelUri(this WindowsRawNotification notification, string channelUri)
{
ValidateUri(channelUri);
notification.ChannelUri = channelUri;
return notification;
}
public static WindowsBadgeGlyphNotification ForChannelUri(this WindowsBadgeGlyphNotification notification, string channelUri)
{
ValidateUri(channelUri);
notification.ChannelUri = channelUri;
return notification;
}
public static WindowsBadgeNumericNotification ForChannelUri(this WindowsBadgeNumericNotification notification, string channelUri)
{
ValidateUri(channelUri);
notification.ChannelUri = channelUri;
return notification;
}
static void ValidateUri(string url)
{
new Uri(url);
}
public static WindowsTileNotification WithTag(this WindowsTileNotification notification, string tag)
{
notification.NotificationTag = tag;
return notification;
}
public static WindowsTileNotification WithCachePolicy(this WindowsTileNotification notification, WindowsNotificationCachePolicyType cachePolicy)
{
notification.CachePolicy = cachePolicy;
return notification;
}
public static WindowsBadgeGlyphNotification WithCachePolicy(this WindowsBadgeGlyphNotification notification, WindowsNotificationCachePolicyType cachePolicy)
{
notification.CachePolicy = cachePolicy;
return notification;
}
public static WindowsBadgeNumericNotification WithCachePolicy(this WindowsBadgeNumericNotification notification, WindowsNotificationCachePolicyType cachePolicy)
{
notification.CachePolicy = cachePolicy;
return notification;
}
public static WindowsToastNotification WithRequestForStatus(this WindowsToastNotification notification, bool requestForStatus)
{
notification.RequestForStatus = requestForStatus;
return notification;
}
public static WindowsTileNotification WithRequestForStatus(this WindowsTileNotification notification, bool requestForStatus)
{
notification.RequestForStatus = requestForStatus;
return notification;
}
public static WindowsRawNotification WithRequestForStatus(this WindowsRawNotification notification, bool requestForStatus)
{
notification.RequestForStatus = requestForStatus;
return notification;
}
public static WindowsBadgeGlyphNotification WithRequestForStatus(this WindowsBadgeGlyphNotification notification, bool requestForStatus)
{
notification.RequestForStatus = requestForStatus;
return notification;
}
public static WindowsBadgeNumericNotification WithRequestForStatus(this WindowsBadgeNumericNotification notification, bool requestForStatus)
{
notification.RequestForStatus = requestForStatus;
return notification;
}
public static WindowsToastNotification WithTimeToLive(this WindowsToastNotification notification, int timeToLive)
{
notification.TimeToLive = timeToLive;
return notification;
}
public static WindowsTileNotification WithTimeToLive(this WindowsTileNotification notification, int timeToLive)
{
notification.TimeToLive = timeToLive;
return notification;
}
public static WindowsRawNotification WithTimeToLive(this WindowsRawNotification notification, int timeToLive)
{
notification.TimeToLive = timeToLive;
return notification;
}
public static WindowsBadgeGlyphNotification WithTimeToLive(this WindowsBadgeGlyphNotification notification, int timeToLive)
{
notification.TimeToLive = timeToLive;
return notification;
}
public static WindowsBadgeNumericNotification WithTimeToLive(this WindowsBadgeNumericNotification notification, int timeToLive)
{
notification.TimeToLive = timeToLive;
return notification;
}
public static WindowsBadgeGlyphNotification WithGlyph(this WindowsBadgeGlyphNotification notification, BadgeGlyphValue glyph)
{
notification.Glyph = glyph;
return notification;
}
public static WindowsBadgeNumericNotification WithBadgeNumber(this WindowsBadgeNumericNotification notification, int badgeNumber)
{
notification.BadgeNumber = badgeNumber;
return notification;
}
public static WindowsToastNotification WithVersion(this WindowsToastNotification notification, int version = 1)
{
notification.Visual.Version = version;
return notification;
}
public static WindowsTileNotification WithVersion(this WindowsTileNotification notification, int version = 1)
{
notification.Visual.Version = version;
return notification;
}
public static WindowsToastNotification WithLaunch(this WindowsToastNotification notification, string launch)
{
notification.Launch = launch;
return notification;
}
public static WindowsToastNotification WithAudio(this WindowsToastNotification notification, ToastAudioSource source, bool loop = false)
{
notification.Audio = new ToastAudio() {Loop = loop, Source = source};
return notification;
}
public static WindowsToastNotification WithDuration(this WindowsToastNotification notification, ToastDuration duration)
{
notification.Duration = duration;
return notification;
}
/// <summary>
/// A single string wrapped across a maximum of three lines of text. For more information and example screenshots of the various Toast Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761494.aspx
/// </summary>
public static WindowsToastNotification AsToastText01(this WindowsToastNotification notification, string wrappedText, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
notification.Visual.Binding = new ToastBinding()
{
ToastTemplate = ToastNotificationTemplate.ToastText01,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
notification.Visual.Binding.Texts.Add(new ToastText() {Language = language, Text = wrappedText});
return notification;
}
/// <summary>
/// One string of bold text on the first line, one string of regular text wrapped across the second and third lines. For more information and example screenshots of the various Toast Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761494.aspx
/// </summary>
public static WindowsToastNotification AsToastText02(this WindowsToastNotification notification, string boldTextLine1, string wrappedTextLine2, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
notification.Visual.Binding = new ToastBinding()
{
ToastTemplate = ToastNotificationTemplate.ToastText02,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
notification.Visual.Binding.Texts.Add(new ToastText() {Language = language, Text = boldTextLine1});
notification.Visual.Binding.Texts.Add(new ToastText() {Language = language, Text = wrappedTextLine2});
return notification;
}
/// <summary>
/// One string of bold text wrapped across the first and second lines, one string of regular text on the third line. For more information and example screenshots of the various Toast Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761494.aspx
/// </summary>
public static WindowsToastNotification AsToastText03(this WindowsToastNotification notification, string boldWrappedTextLine1, string textLine2, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
notification.Visual.Binding = new ToastBinding()
{
ToastTemplate = ToastNotificationTemplate.ToastText03,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = boldWrappedTextLine1 });
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = textLine2 });
return notification;
}
/// <summary>
/// One string of bold text on the first line, one string of regular text on the second line, one string of regular text on the third line. For more information and example screenshots of the various Toast Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761494.aspx
/// </summary>
public static WindowsToastNotification AsToastText04(this WindowsToastNotification notification, string boldTextLine1, string textLine2, string textLine3, string language = null, string fallback = null, BrandingType? branding = null)
{
notification.Visual.Binding = new ToastBinding()
{
ToastTemplate = ToastNotificationTemplate.ToastText04,
Language = language,
Fallback = fallback,
Branding = branding,
};
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = boldTextLine1 });
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = textLine2 });
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = textLine3 });
return notification;
}
/// <summary>
/// An image and a single string wrapped across a maximum of three lines of text. For more information and example screenshots of the various Toast Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761494.aspx
/// </summary>
public static WindowsToastNotification AsToastImageAndText01(this WindowsToastNotification notification, string wrappedText, string imageSource, string imageAlt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
notification.Visual.Binding = new ToastBinding()
{
ToastTemplate = ToastNotificationTemplate.ToastImageAndText01,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = wrappedText });
notification.Visual.Binding.Images.Add(new ToastImage() { AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource });
return notification;
}
/// <summary>
/// An image, one string of bold text on the first line, one string of regular text wrapped across the second and third lines. For more information and example screenshots of the various Toast Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761494.aspx
/// </summary>
public static WindowsToastNotification AsToastImageAndText02(this WindowsToastNotification notification, string boldTextLine1, string wrappedTextLine2, string imageSource, string imageAlt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
notification.Visual.Binding = new ToastBinding()
{
ToastTemplate = ToastNotificationTemplate.ToastImageAndText02,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = boldTextLine1 });
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = wrappedTextLine2 });
notification.Visual.Binding.Images.Add(new ToastImage() { AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource });
return notification;
}
/// <summary>
/// An image, one string of bold text wrapped across the first two lines, one string of regular text on the third line.
/// </summary>
public static WindowsToastNotification AsToastImageAndText03(this WindowsToastNotification notification, string boldWrappedTextLine1, string textLine2, string imageSource, string imageAlt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
notification.Visual.Binding = new ToastBinding()
{
ToastTemplate = ToastNotificationTemplate.ToastImageAndText03,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = boldWrappedTextLine1 });
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = textLine2 });
notification.Visual.Binding.Images.Add(new ToastImage() { AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource });
return notification;
}
/// <summary>
/// An image, one string of bold text on the first line, one string of regular text on the second line, one string of regular text on the third line. For more information and example screenshots of the various Toast Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761494.aspx
/// </summary>
public static WindowsToastNotification AsToastImageAndText04(this WindowsToastNotification notification, string boldTextLine1, string textLine2, string textLine3, string imageSource, string imageAlt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
notification.Visual.Binding = new ToastBinding()
{
ToastTemplate = ToastNotificationTemplate.ToastImageAndText04,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = boldTextLine1 });
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = textLine2 });
notification.Visual.Binding.Texts.Add(new ToastText() { Language = language, Text = textLine3 });
notification.Visual.Binding.Images.Add(new ToastImage() { AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource });
return notification;
}
#region Tile Fluent Methods
/// <summary>
/// One short string of large block text over a single, short line of bold, regular text. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquareBlock(this WindowsTileNotification notification, string largeText, string smallBoldItalicText, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquareBlock,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Texts.Add(new TileText() { Language = language, Text = largeText });
binding.Texts.Add(new TileText() { Language = language, Text = smallBoldItalicText });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One header string in larger text on the first line; three strings of regular text on each of the next three lines. Text does not wrap. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquareText01(this WindowsTileNotification notification, string largeText, string smallTextLine1, string smallTextLine2, string smallTextLine3, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquareText01,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Texts.Add(new TileText() { Language = language, Text = largeText });
binding.Texts.Add(new TileText() { Language = language, Text = smallTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = smallTextLine2 });
binding.Texts.Add(new TileText() { Language = language, Text = smallTextLine3 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One header string in larger text on the first line, over one string of regular text wrapped over a maximum of three lines. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquareText02(this WindowsTileNotification notification, string largeText, string smallTextWrapped, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquareText02,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Texts.Add(new TileText() { Language = language, Text = largeText });
binding.Texts.Add(new TileText() { Language = language, Text = smallTextWrapped });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Four strings of regular text on four lines. Text does not wrap. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquareText03(this WindowsTileNotification notification, string textLine1, string textLine2, string textLine3, string textLine4, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquareText03,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Texts.Add(new TileText() { Language = language, Text = textLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One string of regular text wrapped over a maximum of four lines. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquareText04(this WindowsTileNotification notification, string wrappedText, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquareText04,
Language = language,
Fallback = fallback,
Branding = branding
};
binding.Texts.Add(new TileText() { Language = language, Text = wrappedText });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One square image that fills the entire tile, no text. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquareImage(this WindowsTileNotification notification, string imageSource, string imageAlt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquareImage,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() {AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource});
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Top: One square image, no text. Bottom: One header string in larger text on the first line, three strings of regular text on each of the next three lines. Text does not wrap. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquarePeakImageAndText01(this WindowsTileNotification notification, string imageSource, string imageAlt, string largeTextLine1, string smallTextLine2, string smallTextLine3, string smallTextLine4, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquarePeekImageAndText01,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource });
binding.Texts.Add(new TileText() { Language = language, Text = largeTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = smallTextLine2 });
binding.Texts.Add(new TileText() { Language = language, Text = smallTextLine3 });
binding.Texts.Add(new TileText() { Language = language, Text = smallTextLine4 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Top: Square image, no text. Bottom: One header string in larger text on the first line, over one string of regular text wrapped over a maximum of three lines. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquarePeakImageAndText02(this WindowsTileNotification notification, string imageSource, string imageAlt, string largeTextLine1, string smallTextLine2, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquarePeekImageAndText02,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource });
binding.Texts.Add(new TileText() { Language = language, Text = largeTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = smallTextLine2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Top: Square image, no text. Bottom: Four strings of regular text on four lines. Text does not wrap. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquarePeakImageAndText03(this WindowsTileNotification notification, string imageSource, string imageAlt, string textLine1, string textLine2, string textLine3, string textLine4, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquarePeekImageAndText03,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Top: Square image, no text. Bottom: One string of regular text wrapped over a maximum of four lines. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileSquarePeakImageAndText04(this WindowsTileNotification notification, string imageSource, string imageAlt, string wrappedText, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileSquarePeekImageAndText04,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = imageAlt, Source = imageSource });
binding.Texts.Add(new TileText() { Language = language, Text = wrappedText });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One header string in larger text on the first line, four strings of regular text on the next four lines. Text does not wrap. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText01(this WindowsTileNotification notification, string largeTextLine1, string textLine2, string textLine3, string textLine4, string textLine5, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText01,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = largeTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine5 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One header string in larger text over eight short strings arranged in two columns of four lines each. Columns are of equal width. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText02(this WindowsTileNotification notification, string largeTextLine1, string textLine2Col1, string textLine2Col2, string textLine3Col1, string textLine3Col2, string textLine4Col1, string textLine4Col2, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText02,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = largeTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One string of large text wrapped over a maximum of three lines. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText03(this WindowsTileNotification notification, string wrappedLargeTextLine1, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText03,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = wrappedLargeTextLine1 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One string of regular text wrapped over a maximum of five lines. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText04(this WindowsTileNotification notification, string wrappedTextLine1, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText04,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = wrappedTextLine1 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Five strings of regular text on five lines. Text does not wrap. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText05(this WindowsTileNotification notification, string textLine1, string textLine2, string textLine3, string textLine4, string textLine5, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText05,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = textLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine5 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Ten short strings of regular text, arranged in two columns of five lines each. Columns are of equal width. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText06(this WindowsTileNotification notification, string textLine1Col1, string textLine1Col2, string textLine2Col1, string textLine2Col2, string textLine3Col1, string textLine3Col2, string textLine4Col1, string textLine4Col2, string textLine5Col1, string textLine5Col2, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText06,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = textLine1Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine1Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine5Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine5Col2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One header string in larger text over eight short strings of regular text arranged in two columns of four lines each. The column widths are such that the first column acts as a label and the second column as the content. This template is similar to TileWideText10, but the first column is wider.
/// For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText07(this WindowsTileNotification notification, string largeTextLine1, string textLine2Col1, string textLine2Col2, string textLine3Col1, string textLine3Col2, string textLine4Col1, string textLine4Col2, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText07,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = largeTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Ten short strings of regular text arranged in two columns of five lines each. The column widths are such that the first column acts as a label and the second column as the content. This template is similar to TileWideText11, but the first column is wider.
/// For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText08(this WindowsTileNotification notification, string textLine1Col1, string textLine1Col2, string textLine2Col1, string textLine2Col2, string textLine3Col1, string textLine3Col2, string textLine4Col1, string textLine4Col2, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText08,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = textLine1Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine1Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One header string in larger text over one string of regular text wrapped over a maximum of four lines. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText09(this WindowsTileNotification notification, string largeTextLine1, string wrappedTextLine2, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText09,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = largeTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = wrappedTextLine2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One header string in larger text over eight short strings of regular text arranged in two columns of four lines each. The column widths are such that the first column acts as a label and the second column as the content. This template is similar to TileWideText07, but the first column is narrower.
/// For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText10(this WindowsTileNotification notification, string largeTextLine1, string textLine2Col1, string textLine2Col2, string textLine3Col1, string textLine3Col2, string textLine4Col1, string textLine4Col2, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText10,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = largeTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Ten short strings of regular text arranged in two columns of five lines each. The column widths are such that the first column acts as a label and the second column as the content. This template is similar to TileWideText08, but the first column is narrower.
/// For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideText11(this WindowsTileNotification notification, string textLine1Col1, string textLine1Col2, string textLine2Col1, string textLine2Col2, string textLine3Col1, string textLine3Col2, string textLine4Col1, string textLine4Col2, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideText11,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = textLine1Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine1Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3Col2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4Col2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One wide image that fills the entire tile, no text. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideImage(this WindowsTileNotification notification, string image1Source, string image1Alt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideImage,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = image1Alt, Source = image1Source });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One large square image with four smaller square images to its right, no text. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideImageCollection(this WindowsTileNotification notification, string largeImage1Source, string largeImage1Alt, string image2Source, string image2Alt, string image3Source, string image3Alt, string image4Source, string image4Alt, string image5Source, string image5Alt, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideImageCollection,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = largeImage1Alt, Source = largeImage1Source });
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = image2Alt, Source = image2Source });
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = image3Alt, Source = image3Source });
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = image4Alt, Source = image4Source });
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = image5Alt, Source = image5Source });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One wide image over one string of regular text wrapped over a maximum of two lines. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideImageAndText01(this WindowsTileNotification notification, string wrappedText, string image1Source, string image1Alt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideImageAndText01,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = image1Alt, Source = image1Source });
binding.Texts.Add(new TileText() { Language = language, Text = wrappedText });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One wide image over two strings of regular text on two lines. Text does not wrap. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideImageAndText02(this WindowsTileNotification notification, string textLine1, string textLine2, string image1Source, string image1Alt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideImageAndText02,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = image1Alt, Source = image1Source });
binding.Texts.Add(new TileText() { Language = language, Text = textLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// Four strings of regular, unwrapped text on the left; large block text over a single, short string of bold, regular text on the right. For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideBlockAndText01(this WindowsTileNotification notification, string textLine1, string textLine2, string textLine3, string textLine4, string boldLargeTextRight, string boldTextBottomRight, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideBlockAndText01,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = textLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4 });
binding.Texts.Add(new TileText() { Language = language, Text = boldLargeTextRight });
binding.Texts.Add(new TileText() { Language = language, Text = boldTextBottomRight });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// One string of regular text wrapped over a maximum of four lines on the left; large block text over a single, short string of bold, regular text on the right.
/// For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideBlockAndText02(this WindowsTileNotification notification, string wrappedTextLeft, string boldLargeTextRight, string boldTextBottomRight, string language = null, string fallback = null, BrandingType? branding = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideBlockAndText02,
Language = language,
Fallback = fallback,
Branding = branding,
};
binding.Texts.Add(new TileText() { Language = language, Text = wrappedTextLeft });
binding.Texts.Add(new TileText() { Language = language, Text = boldLargeTextRight });
binding.Texts.Add(new TileText() { Language = language, Text = boldTextBottomRight });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// On the left, one small image; on the right, one string of large text wrapped over a maximum of three lines.
/// For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideSmallImageAndText01(this WindowsTileNotification notification, string wrappedTextRight, string image1Source, string image1Alt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideSmallImageAndText01,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() {AddImageQuery = addImageQuery, Alt = image1Alt, Source = image1Source});
binding.Texts.Add(new TileText() { Language = language, Text = wrappedTextRight });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// On the left, one small image; on the right, one header string in larger text on the first line over four strings of regular text on the next four lines. Text does not wrap.
/// For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideSmallImageAndText02(this WindowsTileNotification notification, string largeTextLine1, string textLine2, string textLine3, string textLine4, string image1Source, string image1Alt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideSmallImageAndText02,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};
binding.Images.Add(new TileImage() { AddImageQuery = addImageQuery, Alt = image1Alt, Source = image1Source });
binding.Texts.Add(new TileText() { Language = language, Text = largeTextLine1 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine2 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine3 });
binding.Texts.Add(new TileText() { Language = language, Text = textLine4 });
notification.Visual.Bindings.Add(binding);
return notification;
}
/// <summary>
/// On the left, one small image; on the right, one string of regular text wrapped over a maximum of five lines.
/// For more information and example screenshots of the various Tile Layouts see http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx
/// </summary>
public static WindowsTileNotification WithTileWideSmallImageAndText03(this WindowsTileNotification notification, string wrappedTextRight, string image1Source, string image1Alt = null, string language = null, string fallback = null, string baseUri = null, BrandingType? branding = null, bool? addImageQuery = null)
{
var binding = new TileBinding()
{
TileTemplate = TileNotificationTemplate.TileWideSmallImageAndText03,
Language = language,
Fallback = fallback,
BaseUri = baseUri,
Branding = branding,
AddImageQuery = addImageQuery
};