Produced by Araxis Merge on 2/1/2017 2:56:49 PM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | C:\Araxis_Merge_Comprasion\Pub_un\BTSSS_CIF_122016.zip\BTSSS_CIF_12_20_16\clean\CRM\trunk\SDK\SampleCode\CS\ModernAndMobileApps\ModernSoapApp\Views | AccountsView.xaml | Tue Dec 20 19:51:47 2016 UTC |
| 2 | Wed Feb 1 19:56:49 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 0 | 0 |
| Removed | 1 | 92 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | <common:La youtAwareP age | |||||
| 2 | x:Name ="pageRoot " | |||||
| 3 | x:Clas s="ModernS oapApp.Vie ws.Account s" | |||||
| 4 | DataCo ntext="{Bi nding Defa ultViewMod el, Relati veSource={ RelativeSo urce Self} }" | |||||
| 5 | xmlns= "http://sc hemas.micr osoft.com/ winfx/2006 /xaml/pres entation" | |||||
| 6 | xmlns: x="http:// schemas.mi crosoft.co m/winfx/20 06/xaml" | |||||
| 7 | xmlns: local="usi ng:ModernS oapApp.Vie ws" | |||||
| 8 | xmlns: common="us ing:Modern SoapApp.Co mmon" | |||||
| 9 | xmlns: d="http:// schemas.mi crosoft.co m/expressi on/blend/2 008" | |||||
| 10 | xmlns: mc="http:/ /schemas.o penxmlform ats.org/ma rkup-compa tibility/2 006" | |||||
| 11 | mc:Ign orable="d" > | |||||
| 12 | ||||||
| 13 | <Page. Resources> | |||||
| 14 | ||||||
| 15 | <! -- TODO: D elete this line if t he key App Name is de clared in App.xaml - -> | |||||
| 16 | <x :String x: Key="AppNa me">My App lication</ x:String> | |||||
| 17 | </Page .Resources > | |||||
| 18 | ||||||
| 19 | <!-- | |||||
| 20 | Th is grid ac ts as a ro ot panel f or the pag e that def ines two r ows: | |||||
| 21 | * Row 0 cont ains the b ack button and page title | |||||
| 22 | * Row 1 cont ains the r est of the page layo ut | |||||
| 23 | --> | |||||
| 24 | <Grid Style="{St aticResour ce LayoutR ootStyle}" > | |||||
| 25 | <G rid.RowDef initions> | |||||
| 26 | <RowDefi nition Hei ght="140"/ > | |||||
| 27 | <RowDefi nition Hei ght="*"/> | |||||
| 28 | </ Grid.RowDe finitions> | |||||
| 29 | ||||||
| 30 | <! -- Back bu tton and p age title --> | |||||
| 31 | <G rid> | |||||
| 32 | <Grid.Co lumnDefini tions> | |||||
| 33 | <Col umnDefinit ion Width= "Auto"/> | |||||
| 34 | <Col umnDefinit ion Width= "*"/> | |||||
| 35 | </Grid.C olumnDefin itions> | |||||
| 36 | <Button x:Name="ba ckButton" Click="GoB ack" IsEna bled="{Bin ding Frame .CanGoBack , ElementN ame=pageRo ot}" Style ="{StaticR esource Ba ckButtonSt yle}"/> | |||||
| 37 | <TextBlo ck x:Name= "pageTitle " Grid.Col umn="1" Te xt="Accoun ts" Style= "{StaticRe source Pag eHeaderTex tStyle}"/> | |||||
| 38 | </ Grid> | |||||
| 39 | ||||||
| 40 | <G rid x:Name ="ContentP anel" Grid .Row="1" M argin="50, 10"> | |||||
| 41 | <Progres sBar Heigh t="50" Hor izontalAli gnment="St retch" Mar gin="0,1,0 ,0" Name=" progressBa r" Vertica lAlignment ="Top" IsI ndetermina te="True" Visibility ="Collapse d" /> | |||||
| 42 | <Canvas Height="60 0" Horizon talAlignme nt="Left" Margin="10 ,10,0,0" N ame="canva sSignIn" V erticalAli gnment="To p" Width=" 600" Visib ility="Vis ible"> | |||||
| 43 | <Lis tBox Name= "listBoxAc counts" Wi dth="500" VerticalCo ntentAlign ment="Top" Height="5 00"> | |||||
| 44 | <ListBox.I temTemplat e> | |||||
| 45 | <DataT emplate> | |||||
| 46 | <G rid Margin ="10"> | |||||
| 47 | <Grid.Co lumnDefini tions> | |||||
| 48 | <Col umnDefinit ion Width= "100" /> | |||||
| 49 | <Col umnDefinit ion Width= "100" /> | |||||
| 50 | <Col umnDefinit ion Width= "*" /> | |||||
| 51 | </Grid.C olumnDefin itions> | |||||
| 52 | <TextBlo ck Text="{ Binding Na me}" Margi n="3" Grid .Column="0 " FontWeig ht="Bold" FontSize=" 12" TextWr apping="Wr ap" /> | |||||
| 53 | <TextBlo ck Text="{ Binding Ph one}" Marg in="3" Gri d.Column=" 1" FontWei ght="Bold" FontSize= "12" TextW rapping="W rap" /> | |||||
| 54 | <TextBlo ck Text="{ Binding Em ail}" Marg in="3" Gri d.Column=" 2" FontWei ght="Bold" FontSize= "12" TextW rapping="W rap" /> | |||||
| 55 | </Gr id> | |||||
| 56 | </Data Template> | |||||
| 57 | </ListBox. ItemTempla te> | |||||
| 58 | </Li stBox> | |||||
| 59 | </Canvas > | |||||
| 60 | </ Grid> | |||||
| 61 | ||||||
| 62 | <V isualState Manager.Vi sualStateG roups> | |||||
| 63 | ||||||
| 64 | <!-- Vis ual states reflect t he applica tion's vie w state -- > | |||||
| 65 | <VisualS tateGroup x:Name="Ap plicationV iewStates" > | |||||
| 66 | <Vis ualState x :Name="Ful lScreenLan dscape"/> | |||||
| 67 | <Vis ualState x :Name="Fil led"/> | |||||
| 68 | ||||||
| 69 | <!-- The entir e page res pects the narrower 1 00-pixel m argin conv ention for portrait --> | |||||
| 70 | <Vis ualState x :Name="Ful lScreenPor trait"> | |||||
| 71 | <Storyboar d> | |||||
| 72 | <Objec tAnimation UsingKeyFr ames Story board.Targ etName="ba ckButton" Storyboard .TargetPro perty="Sty le"> | |||||
| 73 | <D iscreteObj ectKeyFram e KeyTime= "0" Value= "{StaticRe source Por traitBackB uttonStyle }"/> | |||||
| 74 | </Obje ctAnimatio nUsingKeyF rames> | |||||
| 75 | </Storyboa rd> | |||||
| 76 | </Vi sualState> | |||||
| 77 | ||||||
| 78 | <!-- The back button and title hav e differen t styles w hen snappe d --> | |||||
| 79 | <Vis ualState x :Name="Sna pped"> | |||||
| 80 | <Storyboar d> | |||||
| 81 | <Objec tAnimation UsingKeyFr ames Story board.Targ etName="ba ckButton" Storyboard .TargetPro perty="Sty le"> | |||||
| 82 | <D iscreteObj ectKeyFram e KeyTime= "0" Value= "{StaticRe source Sna ppedBackBu ttonStyle} "/> | |||||
| 83 | </Obje ctAnimatio nUsingKeyF rames> | |||||
| 84 | <Objec tAnimation UsingKeyFr ames Story board.Targ etName="pa geTitle" S toryboard. TargetProp erty="Styl e"> | |||||
| 85 | <D iscreteObj ectKeyFram e KeyTime= "0" Value= "{StaticRe source Sna ppedPageHe aderTextSt yle}"/> | |||||
| 86 | </Obje ctAnimatio nUsingKeyF rames> | |||||
| 87 | </Storyboa rd> | |||||
| 88 | </Vi sualState> | |||||
| 89 | </Visual StateGroup > | |||||
| 90 | </ VisualStat eManager.V isualState Groups> | |||||
| 91 | </Grid > | |||||
| 92 | </common:L ayoutAware Page> |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.