I add a template to my page 100 times. Is there a way that I could speed that up?
Here is the code that I have:
details.Children.Add(new LineTemplate());
foreach (var x in App.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i }))
{
if (x.Index != 0) details.Children.Add(new SeparatorTemplate());
if (selected == true) x.Row.IsToggled = true;
if (selected == false) x.Row.IsToggled = false;
var cell = new SwitchGridTemplate
{
IsToggled = x.Row.IsToggled,
BindingContext = x.Row,
Text = x.Row.Name,
Label = x.Row.TotalWordCount.ToString(),
ToggledCommand = (Command)vm.SelectCardSetCmd,
RowId = x.Row.Id
};
details.Children.Add(cell);
}
It takes 8-9 seconds to run and I would like some advice on if there is a different way that I could be adding this that might be faster.
Note that details
is a stacklayout on my page.
For reference here is the SwitchGridTemplate:
<?xml version="1.0" encoding="UTF-8"?>
<jt:BaseGridTemplate xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:jt="clr-namespace:Japanese.Templates"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Japanese;assembly=Japanese"
xmlns:b="clr-namespace:Behaviors;assembly=Behaviors"
xmlns
:converters="clr-namespace:Japanese.Converters;assembly=Japanese"
x:Class="Japanese.Templates.SwitchGridTemplate"
x:Name="this"
BackgroundColor="{DynamicResource GridBackgroundColor}" >
<StackLayout Padding="20,0" HeightRequest="49" Margin="0" Orientation="Vertical" Spacing="0">
<Grid VerticalOptions="CenterAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Text="{Binding Text, Source={x:Reference this}}" VerticalTextAlignment="Center"
Style="{StaticResource LabelText}"
TextColor="{DynamicResource LabelTextColor}" />
<Label Grid.Column="1" Text="{Binding Label, Source={x:Reference this}}" VerticalTextAlignment="Center"
Style="{StaticResource LabelText}"
TextColor="{DynamicResource LabelColor}" />
<local:ExtSwitch Grid.Column="2" SwitchThumbColor="White" SwitchOnColor="Red" SwitchOffColor="Gray"
HorizontalOptions="End" VerticalOptions="Center" IsToggled="{Binding IsToggled, Source={x:Reference this}}" >
<local:ExtSwitch.Behaviors>
<b:EventHandlerBehavior EventName="Toggled">
<b:InvokeCommandAction
Command="{Binding ToggledCommand, Source={x:Reference this}}"
CommandParameter="{Binding ., Source={x:Reference this}}" />
</b:EventHandlerBehavior>
</local:ExtSwitch.Behaviors>
</local:ExtSwitch>
</Grid>
</StackLayout>
xamarin xamarin.forms
add a comment |
Here is the code that I have:
details.Children.Add(new LineTemplate());
foreach (var x in App.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i }))
{
if (x.Index != 0) details.Children.Add(new SeparatorTemplate());
if (selected == true) x.Row.IsToggled = true;
if (selected == false) x.Row.IsToggled = false;
var cell = new SwitchGridTemplate
{
IsToggled = x.Row.IsToggled,
BindingContext = x.Row,
Text = x.Row.Name,
Label = x.Row.TotalWordCount.ToString(),
ToggledCommand = (Command)vm.SelectCardSetCmd,
RowId = x.Row.Id
};
details.Children.Add(cell);
}
It takes 8-9 seconds to run and I would like some advice on if there is a different way that I could be adding this that might be faster.
Note that details
is a stacklayout on my page.
For reference here is the SwitchGridTemplate:
<?xml version="1.0" encoding="UTF-8"?>
<jt:BaseGridTemplate xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:jt="clr-namespace:Japanese.Templates"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Japanese;assembly=Japanese"
xmlns:b="clr-namespace:Behaviors;assembly=Behaviors"
xmlns
:converters="clr-namespace:Japanese.Converters;assembly=Japanese"
x:Class="Japanese.Templates.SwitchGridTemplate"
x:Name="this"
BackgroundColor="{DynamicResource GridBackgroundColor}" >
<StackLayout Padding="20,0" HeightRequest="49" Margin="0" Orientation="Vertical" Spacing="0">
<Grid VerticalOptions="CenterAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Text="{Binding Text, Source={x:Reference this}}" VerticalTextAlignment="Center"
Style="{StaticResource LabelText}"
TextColor="{DynamicResource LabelTextColor}" />
<Label Grid.Column="1" Text="{Binding Label, Source={x:Reference this}}" VerticalTextAlignment="Center"
Style="{StaticResource LabelText}"
TextColor="{DynamicResource LabelColor}" />
<local:ExtSwitch Grid.Column="2" SwitchThumbColor="White" SwitchOnColor="Red" SwitchOffColor="Gray"
HorizontalOptions="End" VerticalOptions="Center" IsToggled="{Binding IsToggled, Source={x:Reference this}}" >
<local:ExtSwitch.Behaviors>
<b:EventHandlerBehavior EventName="Toggled">
<b:InvokeCommandAction
Command="{Binding ToggledCommand, Source={x:Reference this}}"
CommandParameter="{Binding ., Source={x:Reference this}}" />
</b:EventHandlerBehavior>
</local:ExtSwitch.Behaviors>
</local:ExtSwitch>
</Grid>
</StackLayout>
xamarin xamarin.forms
PutApp.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i })
as a line of its own.
– Tom
Nov 21 '18 at 10:42
add a comment |
Here is the code that I have:
details.Children.Add(new LineTemplate());
foreach (var x in App.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i }))
{
if (x.Index != 0) details.Children.Add(new SeparatorTemplate());
if (selected == true) x.Row.IsToggled = true;
if (selected == false) x.Row.IsToggled = false;
var cell = new SwitchGridTemplate
{
IsToggled = x.Row.IsToggled,
BindingContext = x.Row,
Text = x.Row.Name,
Label = x.Row.TotalWordCount.ToString(),
ToggledCommand = (Command)vm.SelectCardSetCmd,
RowId = x.Row.Id
};
details.Children.Add(cell);
}
It takes 8-9 seconds to run and I would like some advice on if there is a different way that I could be adding this that might be faster.
Note that details
is a stacklayout on my page.
For reference here is the SwitchGridTemplate:
<?xml version="1.0" encoding="UTF-8"?>
<jt:BaseGridTemplate xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:jt="clr-namespace:Japanese.Templates"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Japanese;assembly=Japanese"
xmlns:b="clr-namespace:Behaviors;assembly=Behaviors"
xmlns
:converters="clr-namespace:Japanese.Converters;assembly=Japanese"
x:Class="Japanese.Templates.SwitchGridTemplate"
x:Name="this"
BackgroundColor="{DynamicResource GridBackgroundColor}" >
<StackLayout Padding="20,0" HeightRequest="49" Margin="0" Orientation="Vertical" Spacing="0">
<Grid VerticalOptions="CenterAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Text="{Binding Text, Source={x:Reference this}}" VerticalTextAlignment="Center"
Style="{StaticResource LabelText}"
TextColor="{DynamicResource LabelTextColor}" />
<Label Grid.Column="1" Text="{Binding Label, Source={x:Reference this}}" VerticalTextAlignment="Center"
Style="{StaticResource LabelText}"
TextColor="{DynamicResource LabelColor}" />
<local:ExtSwitch Grid.Column="2" SwitchThumbColor="White" SwitchOnColor="Red" SwitchOffColor="Gray"
HorizontalOptions="End" VerticalOptions="Center" IsToggled="{Binding IsToggled, Source={x:Reference this}}" >
<local:ExtSwitch.Behaviors>
<b:EventHandlerBehavior EventName="Toggled">
<b:InvokeCommandAction
Command="{Binding ToggledCommand, Source={x:Reference this}}"
CommandParameter="{Binding ., Source={x:Reference this}}" />
</b:EventHandlerBehavior>
</local:ExtSwitch.Behaviors>
</local:ExtSwitch>
</Grid>
</StackLayout>
xamarin xamarin.forms
Here is the code that I have:
details.Children.Add(new LineTemplate());
foreach (var x in App.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i }))
{
if (x.Index != 0) details.Children.Add(new SeparatorTemplate());
if (selected == true) x.Row.IsToggled = true;
if (selected == false) x.Row.IsToggled = false;
var cell = new SwitchGridTemplate
{
IsToggled = x.Row.IsToggled,
BindingContext = x.Row,
Text = x.Row.Name,
Label = x.Row.TotalWordCount.ToString(),
ToggledCommand = (Command)vm.SelectCardSetCmd,
RowId = x.Row.Id
};
details.Children.Add(cell);
}
It takes 8-9 seconds to run and I would like some advice on if there is a different way that I could be adding this that might be faster.
Note that details
is a stacklayout on my page.
For reference here is the SwitchGridTemplate:
<?xml version="1.0" encoding="UTF-8"?>
<jt:BaseGridTemplate xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:jt="clr-namespace:Japanese.Templates"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Japanese;assembly=Japanese"
xmlns:b="clr-namespace:Behaviors;assembly=Behaviors"
xmlns
:converters="clr-namespace:Japanese.Converters;assembly=Japanese"
x:Class="Japanese.Templates.SwitchGridTemplate"
x:Name="this"
BackgroundColor="{DynamicResource GridBackgroundColor}" >
<StackLayout Padding="20,0" HeightRequest="49" Margin="0" Orientation="Vertical" Spacing="0">
<Grid VerticalOptions="CenterAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Text="{Binding Text, Source={x:Reference this}}" VerticalTextAlignment="Center"
Style="{StaticResource LabelText}"
TextColor="{DynamicResource LabelTextColor}" />
<Label Grid.Column="1" Text="{Binding Label, Source={x:Reference this}}" VerticalTextAlignment="Center"
Style="{StaticResource LabelText}"
TextColor="{DynamicResource LabelColor}" />
<local:ExtSwitch Grid.Column="2" SwitchThumbColor="White" SwitchOnColor="Red" SwitchOffColor="Gray"
HorizontalOptions="End" VerticalOptions="Center" IsToggled="{Binding IsToggled, Source={x:Reference this}}" >
<local:ExtSwitch.Behaviors>
<b:EventHandlerBehavior EventName="Toggled">
<b:InvokeCommandAction
Command="{Binding ToggledCommand, Source={x:Reference this}}"
CommandParameter="{Binding ., Source={x:Reference this}}" />
</b:EventHandlerBehavior>
</local:ExtSwitch.Behaviors>
</local:ExtSwitch>
</Grid>
</StackLayout>
xamarin xamarin.forms
xamarin xamarin.forms
edited Nov 21 '18 at 8:44
Alan2
asked Nov 21 '18 at 5:48
Alan2Alan2
1,56156134257
1,56156134257
PutApp.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i })
as a line of its own.
– Tom
Nov 21 '18 at 10:42
add a comment |
PutApp.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i })
as a line of its own.
– Tom
Nov 21 '18 at 10:42
Put
App.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i })
as a line of its own.– Tom
Nov 21 '18 at 10:42
Put
App.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i })
as a line of its own.– Tom
Nov 21 '18 at 10:42
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405947%2fi-add-a-template-to-my-page-100-times-is-there-a-way-that-i-could-speed-that-up%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405947%2fi-add-a-template-to-my-page-100-times-is-there-a-way-that-i-could-speed-that-up%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Put
App.cardSetWithWordCount.Select((r, i) => new { Row = r, Index = i })
as a line of its own.– Tom
Nov 21 '18 at 10:42