One of the most common scenarios in LOB applications is a list control, displaying some sort of items, and clicking on an item provides the user with some details about selected item. This is called a Master-detail scenario. Take Microsoft Outlook, as a typical three level example [Folder-Mail-Content]. I’m going to implement this scenario with Silverlight Toolkit’s TreeView using the MVVM pattern.
I’ll use the same PageViewModel, used in the first post of my TreeView Editing series and begin working on the user interface, first using a ListBox, not the TreeView. The PageViewModel is, again, set as the DataContext of the main page.
Selecting a help topic from the list will get its description shown in a TextBlock below the ListBox. How this works is that when an item is selected, the ViewModel is notified. The ViewModel then gets the selected item’s details and notifies the TextBlock when the details are available. Sounds complicated? It’s not, really.
Let’s do this the easy way – I’m going to use the HelpTopic class as a list item and as a detail. That means both the ListBox and the TextBlock will be bound to the new SelectedTopic property on the ViewModel:
private HelpTopic selectedTopic; public HelpTopic SelectedTopic { get { return selectedTopic; } set { if (selectedTopic == value) { return; } selectedTopic = value; OnPropertyChanged("SelectedTopic"); } }
with ListBox and TextBlock bound as displayed in this parts of Xaml:
<ListBox ItemsSource="{Binding HelpTopics}" DisplayMemberPath="Name"
SelectedItem="{Binding SelectedTopic, Mode=TwoWay}" /><TextBlock Text="{Binding SelectedTopic.Name}" />
Now let’s add a Tree and bind it the same way as the ListBox. Here’s the complete Xaml:
<StackPanel> <StackPanel Orientation="Horizontal"> <ListBox ItemsSource="{Binding HelpTopics}" DisplayMemberPath="Name"
SelectedItem="{Binding SelectedTopic, Mode=TwoWay}" Width="300"
HorizontalAlignment="Stretch" /> <slt:TreeView VerticalAlignment="Stretch" ItemsSource="{Binding HelpTopics}"
SelectedItem="{Binding SelectedTopic, Mode=TwoWay}" Width="300"> <slt:TreeView.ItemTemplate> <slt:HierarchicalDataTemplate ItemsSource="{Binding SubTopics}"> <TextBlock Text="{Binding Name}" VerticalAlignment="Center" /> </slt:HierarchicalDataTemplate> </slt:TreeView.ItemTemplate> </slt:TreeView> </StackPanel> <Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Stretch"> <StackPanel Orientation="Horizontal"> <TextBlock Text="You selected: " Margin="4" /> <TextBlock Text="{Binding SelectedTopic.Name}" VerticalAlignment="Center" Margin="4" /> </StackPanel> </Border> </StackPanel>
We have two controllers now (ListBox and TreeView). But let’s observe how they like being controlled.
TreeView differs from the ListBox in having a private SelectedItem property setter, which makes two-way binding impossible. Almost impossible anyway, there is a way around it.
Let’s extend the TreeView by creating a new attached property which will provide us with “the-missing-way binding”, needed to update the TreeView from the ViewModel:
public class SelectionService { public static readonly DependencyProperty SelectedItemProperty =
DependencyProperty.RegisterAttached("SelectedItem", typeof(object), typeof(SelectionService),
new PropertyMetadata(null, OnSelectedItemChanged)); public static void SetSelectedItem(DependencyObject o, object propertyValue) { o.SetValue(SelectedItemProperty, propertyValue); } public static object GetSelectedItem(DependencyObject o) { return o.GetValue(SelectedItemProperty); } private static void OnSelectedItemChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { TreeView treeView = d as TreeView; if (treeView == null) { return; } TreeViewItem item = treeView.ItemContainerGenerator.ContainerFromItem(e.NewValue) as TreeViewItem; if (item == null) { return; } item.IsSelected = true; } }
There’s really just two lines of code that actually do anything. In the OnSelectedItemChangedMethod, I’m getting the container TreeViewItem of the selected HelpTopic and set its IsSelected property to true.
To attach this property to the TreeView, add the following to the above-defined TreeView:
<slt:TreeView ... local:SelectionService.SelectedItem="{Binding SelectedTopic}">
There’s however two minor issues to this approach… TreeView’s native SelectedItem property is still two-way bound so when ViewModel tries to call its private setter, an exception is still thrown, which may affect performance. What we would need here is a OneWayToSource type binding, which exists in WPF, but unfortunately not in Silverlight.
The other issue is that the above code only works for the root level. If you want to select any node in the hierarchy, you would traverse the tree unit you find the one that should be selected. But… the TreeView creates TreeViewItems only when needed (when their parent node is expanded). In order to fix this, each item has to be expanded before inspecting their children and then collapsed, if that was its original state. Additionally, this approach can be even more time consuming. Let’s look at the quick and dirty implementation:
private static void OnSelectedItemChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { TreeView treeView = d as TreeView; if (treeView == null) { return; } TreeViewItem item = treeView.ItemContainerGenerator.ContainerFromItem(e.NewValue) as TreeViewItem; if (item != null) { item.IsSelected = true; return; } for (int i = 0; i < treeView.Items.Count; i++) { SelectItem(e.NewValue, treeView.ItemContainerGenerator.ContainerFromIndex(i) as TreeViewItem); } } private static void SelectItem(object o, TreeViewItem parent) { if (parent == null) { return; } bool isExpanded = parent.IsExpanded; if (!isExpanded) { parent.IsExpanded = true; parent.UpdateLayout(); } TreeViewItem item = parent.ItemContainerGenerator.ContainerFromItem(o) as TreeViewItem; if (item != null) { item.IsSelected = true; return; } for (int i = 0; i < parent.Items.Count; i++) { SelectItem(o, parent.ItemContainerGenerator.ContainerFromIndex(i) as TreeViewItem); } if (parent.IsExpanded != isExpanded) { parent.IsExpanded = isExpanded; } }
OK, now we have a two-way bindable TreeView, playing nice with the ViewModel, but with some performance hit for that “other-way binding”. I’m sure the Silverlight Toolkit guys would make this much more performant, so if you would like to see TreeView’s SelectedItem property to be made public, you can vote here.
Thanks for shaqring your thoughts about games. Regards - sreda, 12. marec 2025
Thanks for saring your thnoughts about games.Regards
This is my first time go to see at here and i am in fact impressed to read all at alone place. - sreda, 26. februar 2025
This is my first time go to see at here and i am in fact impressed to read all at alone place.
I visited many blogs except the audio feature for audio songs present at this web page is truly fabulous. - sreda, 26. februar 2025
I visited many blogs except the audio feature for audio songs present at this web page is truly fabulous.
Good information. Lucky me I recently found your site by accident (stumbleupon). I have saved it for later! - sreda, 26. februar 2025
Good information. Lucky me I recently found your site by accident (stumbleupon). I have saved it for later!
It's remarkable for me to have a web page, which is helpful designed for my experience. thanks admin - torek, 25. februar 2025
It's remarkable for me to have a web page, which is helpful designed for my experience. thanks admin
Saved as a favorite, I like your web site! - ponedeljek, 24. februar 2025
Saved as a favorite, I like your web site!
If you want to take much from this paragraph then you have to apply these methods to your won blog. - ponedeljek, 24. februar 2025
If you want to take much from this paragraph then you have to apply these methods to your won blog.
I am truly thankful to the holder of this web site who has shared this fantastic paragraph at here. - nedelja, 23. februar 2025
I am truly thankful to the holder of this web site who has shared this fantastic paragraph at here.
Thankfulness to my father who shared with me on the topic of this web site, this web site is truly amazing. - sobota, 22. februar 2025
Thankfulness to my father who shared with me on the topic of this web site, this web site is truly amazing.
This is a topic that is close to my heart... Thank you! Exactly where are your contact details though? - četrtek, 20. februar 2025
This is a topic that is close to my heart... Thank you! Exactly where are your contact details though?
Wow, that's what I was seeking for, what a data! present here at this weblog, thanks admin of this web page. - sreda, 19. februar 2025
Wow, that's what I was seeking for, what a data! present here at this weblog, thanks admin of this web page.
Fastidious answer back in return of this issue with genuine arguments and describing the whole thing on the topic of that. - sreda, 19. februar 2025
Fastidious answer back in return of this issue with genuine arguments and describing the whole thing on the topic of that.
Incredible quest there. What occurred after? Good luck! - ponedeljek, 17. februar 2025
Incredible quest there. What occurred after? Good luck!
Pretty! Thiss was ann extremely wonderfcul post. Thank youu forr supplying this information. - petek, 07. februar 2025
Pretty! This was an extremely wonderful post. Thank you for supplying this information.
Very good post! We aare linking to this great content oon ourr website. Keep up thhe great writing. - torek, 04. februar 2025
Very good post! We are linking to this great content on our website. Keep up the great writing.
WOW just what I was searching for. Came here by searching for casino - torek, 04. februar 2025
WOW just what I was searchinmg for. Came here by searching for casino
Saved as a favorite, I like your site! - torek, 04. februar 2025
Saved as a favorite, I like your site!
This website was... how do I say it? Relevant!! Finally I've found something that helped me. Thanks! - torek, 04. februar 2025
Thhis website was... hoow do I say it? Relevant!! Finally I've found something that helped me. Thanks!
What a stuff of un-ambiguity and preserveness off valuable knowledge concerning unpredicted feelings. - torek, 04. februar 2025
What a stuff of un-ambiguity and preserveness of valuable knowledge concerning unpredicted feelings.
This website truly has all thee information and facrs I wanted about this subject aand didn't know wwho to ask. - torek, 04. februar 2025
This website truly hass all the information and facts I wanted abouht this subject and didn't know whoo tto ask.
Wonderful article! We will be linking to this particularly great content on our website. Keeep up the good writing. - torek, 04. februar 2025
Wonderful article! We will be linkingg to this particularly great content on our website. Keep up the good writing.
This info is priceless. Where can I find out more? - torek, 04. februar 2025
This info is priceless. Where ccan I find out more?
Hi, I wish for to subscribe for this weblog to get most recent updates, thus where can i do it please assist. - torek, 04. februar 2025
Hi, I wish for to subscribe for this weblog to get most recent updates, thus where can i do itt please assist.
Pretty! This has been a really wonderful post. Thank you for providing this info. - torek, 04. februar 2025
Pretty! This has been a really wonderful post. Thank you for providing this info.
Very good info. Lucky me I found your website by chance (stumbleupon). I've saved as a favodite forr later! - torek, 04. februar 2025
Very good info. Lucky me I found your website by chance (stumbleupon). I've saved as a favorite for later!
Pretty! This was an incredibly wonderful article. Thanks for supolying this info. - torek, 04. februar 2025
Pretty! This wass an incredibly wonderful article. Thanks for supplying this info.
Veryy good information. Lucky mme I came across your website by accident (stumbleupon). I've bookmarked itt for later! - torek, 04. februar 2025
Very good information. Lucky mee I came across your website by accident (stumbleupon). I've bookmarked it for later!
Hurrah, that's what I was exploring for, wwhat a stuff! existing here at ths blog, thanks admin of this site. - torek, 04. februar 2025
Hurrah, that's what I was exploring for, what a stuff! existinng here at this blog, thanks admin of this site.
Paragraph writing is also a fun, if you be acquainted wih after that you can write if not it is complex to write. - torek, 04. februar 2025
Parawgraph writing is aalso a fun, if you bbe acquainted with after that you can write if not it is complex to write.
I was able to find good informatioln from your blog articles. - torek, 04. februar 2025
I was able to find good information fom your blog articles.
Great delivery. Sound arguments. Keep up the good spirit. - torek, 04. februar 2025
Great delivery. Sound arguments. Keep up the good spirit.
Do you have any video of that? I'd love to find out more details. - torek, 04. februar 2025
Do you have any video of that? I'd love to find out more details.
I every time emailed this blog posat page to all my friends, as if like to read it then my contacts will too. - torek, 04. februar 2025
I every time emailed thos blog post pagfe to all my friends, as if likke to read it then my contacts will too.
Wow, this piece of writing is pleasant, my younger sister iss analyzing these kinds oof things, so I am going to convey her. - torek, 04. februar 2025
Wow, this piece of writing is pleasant, myy younger sister is analyzing these kinds of things, so I am going to convey her.
Pretty! Thiis has been a really wonderful article. Thanks for providing these details. - torek, 04. februar 2025
Pretty! This has been a really wonderful article. Thanks for provgiding these details.
Hi there to every single one, it's in fact a ggood for me to pay a quick visi this site, it consists of important Information. - torek, 04. februar 2025
Hi thsre to every single one, it's in fact a good for me to pay a quick visit this site, it consists of important Information.
Hi tto every single one, it's in fact a pleeasant for me to ppay a visit this site, it includes important Information. - torek, 04. februar 2025
Hi to every single one, it's in fact a pleasant for me to pay a visit this site, it incluees important Information.
It's great thast you are getting thoughts from this post as well as rom our argument made here. - torek, 04. februar 2025
It's geat that you are getting thoughts from this post as well as from our argument made here.
I lie reading through a post that will make men and women think. Also, thanks for allowing mee to comment! - torek, 04. februar 2025
I like reading through a post that will make men and women think. Also, thanks for allowing me to comment!
Keep on writing, great job! - torek, 04. februar 2025
Keep on writing, great job!
Veery good post! We wiill be linking too this great post on our website. Keep up the greeat writing. - torek, 04. februar 2025
Very gopod post! We will be linking to this great post on our website. Keep upp the great writing.
Hi there, yes this post iis actually nice and I have learned lot of things from it concerning blogging. thanks. - torek, 04. februar 2025
Hi there, yyes this pst is actually nice and I have learned lot of things from it concerning blogging. thanks.
If you want to improve your familiarity simply keep visiting this website and be updated with thhe latest gossipp posted here. - torek, 04. februar 2025
If you want to improve your familiarity simply keep visiting this website and be updated with the latest gossip posted here.
I used to be able to find good info from your blog articles. - torek, 04. februar 2025
I used tto be able to find good ijfo from your blog articles.
Yes! Finally someonbe writes about casino. - torek, 04. februar 2025
Yes! Finally someonhe writes about casino.
This page certainly has all the information I needed concerning this subject and didn't know who to ask. - torek, 04. februar 2025
This page certainly has all the information I needed concerning this subject and didn't know who to ask.
You need to be a part of a contest for one of thhe finest websites online. I most certainly willl recommend this weeb site! - ponedeljek, 03. februar 2025
You need to be a part of a contest ffor one of the finest websites online. I most certainly will recommend this web site!
Pretty! This has been ann extremely wonderful article. Thwnk you for supplying these details. - ponedeljek, 03. februar 2025
Pretty! This has been an extremely wonderful article. Thank you for supplying these details.
Hi tto every one, it's in fact a good for me to visit this site, it contains priceless Information. - ponedeljek, 03. februar 2025
Hi to every one, it's iin fact a good for me to visit this site, it contains priceless Information.
I constantly spent my half an hour to read this web site's cobtent daily along with a cup of coffee. - ponedeljek, 03. februar 2025
I constantly spent my half aan hour to reead thbis web site's content daily along with a cup of coffee.
Good information. Luhky me I came across your website by chaance (stumbleupon). I've saved ass a favorite forr later! - ponedeljek, 03. februar 2025
Good information. Lucky me I came across your website by chance (stumbleupon). I've saved aas a favorite for later!
Ivisit daily a few bllogs and websites to read articles, except this webpage presents quality based articles. - ponedeljek, 03. februar 2025
I visit daily a few blogs and websites too read articles, except this webpage presents quality baaed articles.
This piece of writing is in fact a pleasant one it assists new net viewers, who are wishing for blogging. - ponedeljek, 03. februar 2025
This piece of writing is in fact a pleasant one it assists nnew net viewers, who are wisbing for blogging.
Very good post! We are linking to this great content on our site. Keep up the good writing. - ponedeljek, 03. februar 2025
Very good post! We are linking to this great content oon our site. Keep up the good writing.
I read thi post fully about the difference of latest annd previous technologies, it's amazing article. - ponedeljek, 03. februar 2025
I read this post fully about the difference of latest and previous technologies, it's amazing article.
Wow, this article is good, my sister is analyzing such things, therefore I am going to inform her. - ponedeljek, 03. februar 2025
Wow, this article is good, my sister iss analyzing such things, therefore I am going to inform her.
It's very effortless to find out any topic on web as compared to books, as I found thiss piece oof riting at this web site. - ponedeljek, 03. februar 2025
It's very effortless to find out any topic on web as compared to books, aas I found this piece of writing at this web site.
I couldn't refrain from commenting. Very well written! - ponedeljek, 03. februar 2025
I couldn't refrain from commenting. Very well written!
This excellent website definitely has all the infoo I wanted concernhing this subject and didn't know who to ask. - ponedeljek, 03. februar 2025
This excellent website definitely has all the infro I wanted concerning this subject and didn't know who to ask.
I have read so many postrs about the blogger lovers but this post is genuinely a fastidious paragraph, keep it up. - ponedeljek, 03. februar 2025
I have read so many posts about the blogger lovers but this post is genuinely a fastidious paragraph, keep it up.
I aam genuinely glad to glance at this blog posts which consists of lots of helpful data, thanks for providing such data. - ponedeljek, 03. februar 2025
I am genuinely glad to glance aat this blog posts which consists oof lots of helpful data, thanks for providing such data.
Really when someone doesn't be awaqre of then its up to other users that they will help, so her it takes place. - ponedeljek, 03. februar 2025
Reqlly when someone doesn't bee aware of then iits up to other users thzt they will help, so here it tajes place.
What's up, every time i used to check blog posts here early in the dawn, because i love to gain knowledge of more and more. - ponedeljek, 03. februar 2025
What's up, every time i used tto check blog posts here early in the dawn, because i love to gain knowledge of more and more.
It's very effortless to find oout any topic on net as compared to textbooks, as I found this article at this web site. - ponedeljek, 03. februar 2025
It's very effortless too fond out any topic on nett as compared to textbooks,as I found this article at this web site.
What's up, for all time i used to check web site posts here early in the break of day, since i enjoy tto learn more andd more. - ponedeljek, 03. februar 2025
What's up, for all time i used to chck web site posts here early in the break of day, since i enjoy to learn molre and more.
Yes! Finally something about casino. - ponedeljek, 03. februar 2025
Yes! Finally something about casino.
Thankfulness to my father who informed me about this website, this web site is actualoy awesome. - ponedeljek, 03. februar 2025
Thankfulness to my father who informed me about this website, this web site is actually awesome.
Excellent, what a website it is! This webpage gives useful facts to us, keep it up. - petek, 24. januar 2025
Excellent, what a website it is! This webpage gives useful facts tto us, keep it up.
Pretty! This has been an incredibly wonderful article. Thank you for providing these details. - petek, 24. januar 2025
Pretty! This has been an incredibly wonderful article. Thank you for poviding tyese details.
What's up, I would like to subscribe for this blog to get most recent updates, so where can i do it please assist. - petek, 24. januar 2025
What's up, I would like to subscribe for this blog too get most recent updates, so where can i do it please assist.
Keep this goinng please, great job! - petek, 24. januar 2025
Keep this going please, great job!
Hi there, I want to subscribe for this blog to ttake most recent updates, so where can i do it please help out. - petek, 24. januar 2025
Hi there, Iwant to subscribe ffor this blog to take most recent updates, so where can i do it please help out.
Truly no matter iff someone doesn't be aware of afterward iits up to other users that they wiol help, so here it takes place. - petek, 24. januar 2025
Truly no matter if someone doesn't be aware of afterward its up to other users that they will help, so here it takes place.
Remarkable! Its in fact awesome paragraph, I have got much clear idea on the topic of from this post. - petek, 24. januar 2025
Remarkable! Its inn fact aawesome paragraph, I have got much clear idea onn the topic of from his post.
Hello, just wanted to mention, I enjoyed this blog post. It was inspiring. Keepp on posting! - petek, 24. januar 2025
Hello, just wanted to mention, I enjoyed this blog post. It was inspiring. Keep on posting!
Hello, its fastidious paragraph on the topic oof media print, we alll be familiar with media is a enormous source of data. - petek, 24. januar 2025
Hello, its fastidious paragraph on the topic of media print, we alll be familiar with media is a enormous sokurce off data.
Because the admin of this web site is working, no doubt very rapidly it will be famous, ddue to its feature contents. - petek, 24. januar 2025
Because the admin of this web site is working, no doubt very rapidly it will be famous, due to its feature contents.
This article is actually a fastidious one it helps new web viewers, who are wishing in favor of blogging. - petek, 24. januar 2025
Thiis article is actually a fastidious one it helps new web viewers, who are wishing in favor of blogging.
Why users styill use to read news papers when in this technological worfld aall is accessible on web? - petek, 24. januar 2025
Why users still use to read news papers when in this technological world all is accessible on web?
I read this article fully regardding thhe difference of hottest and preceding technologies, it's amazing article. - petek, 24. januar 2025
I read this article fully regarding the difference of hottes and preceding technologies, it's amazing article.
Wonderful, what a website it is! This webpage presents helpful information to us, kee it up. - petek, 24. januar 2025
Wonderful, what a website it is! This webpoage presents helpful information to us, keep iit up.
What's up, I read your blog daily. Your writing style is awesome, keep up the good work! - torek, 21. januar 2025
What's up, I read your blog daily. Your writing style is awesome, keep up the good work!
Saved ass a favorite, I love your site! - nedelja, 19. januar 2025
Saved as a favorite, I llve your site!
There's definatyely a lot to learn about this issue. I really like all of the points you have made. - nedelja, 19. januar 2025
There's definately a lot to learn about this issue. I really like alll of the points you have made.
Excellent article! We are linking to this great content on our site. Keep up the goold writing. - nedelja, 19. januar 2025
Excellent article! We are linking to this great content on our site. Keep up the good writing.
This iss my first time pay a qick visit at here and i am genuinely impressed to read all at single place. - nedelja, 19. januar 2025
This is my first time pay a quick visit at here and i am genuinely impressed to read all aat single place.
I could not resist commenting. Exceptionally well written! - nedelja, 19. januar 2025
I could not resist commenting. Excetionally well written!
I read this paragraph fully about the comparison of hottest aand earlier technologies, it's remarkable article. - sobota, 18. januar 2025
I read this paragraph fully about tthe comparison of hottest and earlier technologies, it's remarkable article.
This is a topic that's near to myy heart... Cheers! Where are your contact details though? - sobota, 18. januar 2025
This is a topic that's near tto my heart... Cheers! Where are your contadt details though?
What's up, its nice post about media print, we all be familiar with media is a fantastic source of data. - sobota, 18. januar 2025
What's up, its nice post about media print, we all be familiar with media iis a fantastic source of data.
Why viewers still make use of to read news papes when in this technological globbe all is presented on net? - sobota, 18. januar 2025
Why viewers still make use of to read news papers wyen in this technological globe all iis presented on net?
This pos is genuiinely a fastidious one it assists new the web users, who are wishing in favor of blogging. - sobota, 18. januar 2025
This ost is genuinelly a fastidious one it assists new the web users, who are wishing in favor of blogging.
It's ammazing designed for me to have a web site, which is good in support of my know-how. thanks admin - sobota, 18. januar 2025
It's amazing designed for me to have a web site, which is good in support of my know-how. thanks admin
Great article, exactly what I was loooing for. - sobota, 18. januar 2025
Great article, exactly what I was looking for.
Wonderful, what a web site it is! This weblog presents useful data to us, keep itt up. - torek, 07. januar 2025
Wonderful, what a web site it is! This weblog presents useful data to us, keeep it up.
Hi,just wanted to mention, I liked this article. It was helpful. Keep on posting! - ponedeljek, 06. januar 2025
Hi, just wantedd to mention, I liked this article. It was helpful. Keep on posting!
Thankfullness to my father who informed me about this webpage, this website iss really remarkable. - četrtek, 26. december 2024
Thankfulness to my father who informed me about thjis webpage, this website is really remarkable.
I love looking through a post that will make people think. Also, many thanks for allowing foor me to comment! - sreda, 25. december 2024
I love looking through a post that will make people think. Also, many thanks foor allowing for me to comment!
Right away I am ready to do my breakfast, later than having my breakfast coming again too read more news. - sreda, 25. december 2024
Right away I am ready to do my breakfast, later than having mmy breakfast coming again to read more news.
Pretty! This was a really wonderful article. Thank you for providing this information. - sreda, 25. december 2024
Pretty! This was a really wonderful article. Thank you for providing this information.
This post is worth everyone's attention. Where can I find out more? - sobota, 21. december 2024
This post is worth everyone's attention. Where can I find out more?
This info is worth everyone's attention. When can I find out more? - petek, 20. december 2024
This info is worth everyone's attention. When can I find out more?
What's up, just wanted to say, I enjoyed this post. It was practical. Keep on posting! - torek, 26. november 2024
What's up, just wanted tto say, I enjoyed this post. It was practical. Keep on posting!
Pretty! This was a really wonderful post. Thanks for supplying this info. - petek, 08. november 2024
Pretty! This was a really wonderful post. Thanks for supplying this info.