Tag Info

New answers tagged

0

By any chance do you have an x:Key defined in your datatemplate. If so that will cause the content presenter not to use the datatemplate. It was an issue I had recently.


0

You are having this problem because you are doing it wrong. NavigationService.Navigate is meant to navigate between XAML Files, not reload them. The phone doesn't like to reload the same page over and over. What you want to do instead is set the current selected index to the first page. ...


1

The reason you're getting all mixed up result is because MetroTabItem doesn't have a Template of its own I think and uses TabItem style override instead. Your original approach is on the right path. I can't tell how your actual style is configured (the cut paste of ResourceDictionary you've pasted here won't compile as it is) but if you use this block of ...


0

You can make an aggregator app that hits a web service to check for new content. An outline on how to do it could be such: Make a database with a table containing details of the video like ID,name,etc and a link field of the video on the server. Create a web service that takes ID as input from the app. Suppose my app has all the videos till ID 5, the app ...


0

Providing a custom component turned out to be the best solution. I use it like this in my code <Controls:Arc Center="{Binding Path=PreviousMousePositionPixels}" Stroke="White" StrokeDashArray="4 4" SnapsToDevicePixels="True" StartAngle="0" EndAngle="{Binding Path=DeltaAngle}" SmallAngle="True" ...


1

In the codebehind of your UserControl, define dependency properties for the brushes you want to use in your template. public static readonly DependencyProperty ThumbnailBrushProperty = DependencyProperty.Register("Command", typeof (Brush), typeof (YourControl), new PropertyMetadata(default(Brush))); This property will show up in the VS ...


1

I have solved this issue myself with the help of this post here is the solution <!--to set the Pie slice color--> <SolidColorBrush x:Key="color1" Color="Maroon" /> <SolidColorBrush x:Key="color2" Color="DarkBlue" /> <!--Pie Palette--> <customControls:LabeledPieChart.Palette> ...


0

Yes, there is: On your custom control which inherits from Calendar, you can expose dependency properties of type ControlTemplate for each of the three styles public class MyCalender : Calendar { public static readonly DependencyProperty PreviousButtonTemplateProperty = DependencyProperty.Register("PreviousButtonTemplate", typeof ...


1

You've overridden the template of your control in order to set the MouseOver trigger. That means your control template is otherwise empty - and so nothing is drawn for your button. You can fix that by moving your triggers to the style itself, like this: <Style TargetType="Button" x:Key="BlackButton"> <Setter Property="Background" ...


0

Well your ControlTemplate is simply empty, although you have a ControlPresenter in it. But since its Content property is not set, it's also empty. To have a Background you will have to add a Border. <Style TargetType="Button" x:Key="BlackButton"> <Setter Property="Background" Value="Black"/> <Setter Property="Template"> ...


0

You can handle the XamDateTimeEditor's PreviewKeyDownEvent and set the e.Handled Proprty to true in the event handler. This way the user won't be able to enter anything using the Keyboard.


1

It's a bit of a long shot, but you could try offloading the opening of the image to the dispatcher: TypedEventHandler<ToastNotification, object> openPic = async delegate(ToastNotification toastSender, object toastArgs) { Window.Current.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => var success = await ...


0

In order to "fill" all horizontal space in WPF DataGrid as you specified, make sure you have these properties set in XAML: <DataGrid HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" ColumnWidth="*" />


0

Try to use ContentControl.ContentTemplate to set the DataTemplate you want to use for the Content. Check out the explanation here


0

Observable collection has event about changing collection of items (CollectionChanged). You should subscribe on it. When you see that new item is added, you need subscribe on it (onto PropertyChanged). And when it is removed from collection not forget to unsubscribe.


1

The easiest thing to do would be moving the style to the column's template: <GridViewColumn Width="90" Header="Status"> <GridViewColumn.CellTemplate> <DataTemplate> <TextBlock Text="{Binding Status}"> <TextBlock.Style> <!-- Style here without additional condition ...


3

Well the problem was that Expression Blend automatically defined a style key: <Style x:Key="TileStyle" TargetType="{x:Type local:Tile}"> It works fine now after I deleted it: <Style TargetType="{x:Type local:Tile}">


0

Kxaml is adding it because a XAML file doesn't want to save a Glyph for good reason. You'll either need to save the code Rachel mentions &#186; or find another way to reproduce ALT+0176/ALT+0186


1

try using + <TextBlock &#186;"/>


0

I provide you with a sample to open a Page inside a Tab Control , hope it helps : public void OpenTabForm(Page oPage) { try { Frame oFrame = new Frame(); oFrame.Content = oPage; TabItem myItem = new TabItem(); myItem.Header = oPage.Name; //give the header text ...


1

My question is, how do I expose the tab control through the user control so we can add tabs? One straight forward option would be adding a public method to the user control: public void AddTab(string header) { this.tabControl.Items.Add(header); } another option would be to expose the Items property on the user control: public ItemCollection ...


3

Checkout the Button control default template here. http://msdn.microsoft.com/en-us/library/ms753328%28v=vs.90%29.aspx If we see BorderThickness property has been set to fixed value 1. Hence no changes are reflected. You need to create a new ControlTemplate for this purpose.


1

public class Account { public int AccountNumber { get; set; } public string Name { get; set; } } public class AccountRecords { public int AccountNumber { get; set; } public int AccountRecordNumber { get; set; } public string Details { get; set; } } public class AccountManager { public static List<Account> GetAccounts() ...


1

You can use RowDetails Template. Example Code is Below: XAML : <Window x:Class="TestWPFApp.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:TestWPFApp" Title="MainWindow" Height="350" Width="525"> <Grid> ...


0

<TextBlock Text="{Binding Name}"/> it is cool but for the listpicker there is also DisplayMemberPath property so, on listpicker add : DisplayMemberPath="Name"


0

Adding following to the application resources sets color on all pages. <Style TargetType="phone:PhoneApplicationFrame"> <Setter Property="Background" Value="{StaticResource SomeBrush}"/> </Style>


0

Directly answering your question - you need to implement either Data or UI virtualization (like Sheep proposed in his answer). Take a look at this answer for further details and explanations: http://stackoverflow.com/a/1453818/786055 But generally speaking, using ComboBox for displaying large sets of data IMHO is not a best decision from the usability ...


0

I have written a UIElement extension that copies the properties and children of an element -- note that it does not set up an events for the clone. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Windows.UI.Xaml; using System.Reflection; using Windows.UI.Xaml.Controls; namespace ...


0

Hi the solution for this question is actually quite simple. All you have to do is add the following style to your xaml code: <Style TargetType="ComboBox"> <Setter Property="ItemsPanel"> <Setter.Value> <ItemsPanelTemplate> <VirtualizingStackPanel/> </ItemsPanelTemplate> ...


0

Are you able to display your url? if it is html page then you should keep it in side your solution's folder and write WebBrowser1.Navigate(new Uri("ch51130.html", UriKind.Relative)); if it is simple url like www.google.com then Uri uri = new Uri("http://www.google.co.in");


1

This is because Member expects a string. So you cannot assign a binding to it. You can bind a string to a dependency property but not the other way around.


1

My guess is that the Member property probably isn't a DependencyProperty. You can't use a binding on a regular C# property. Edit: It's definitely not a DependencyProperty. See: http://www.telerik.com/help/silverlight/p_telerik_windows_data_groupdescriptor_member.html


1

You have three options here. First option: Modify your view model to expose your formatted string and bind to that. public string CountFormatted { get { return String.Format(AppResources.TextResource, Count); } } <TextBlock Text="{Binding Path=CountFormatted}" /> Second option: Make a converter MyCountConverter public class ...


0

You can use SQLite or XML for storing data, just Google it you will find a lot of tutorials SQLite Using SQLite in a Windows Store App Sqlite For Windows 8 Metro/Winrt Apps Using SQLite and sqlite-net in a Windows Store App Tim Heuer Blog : Tagged - sqlite qmatteoq.com : Tagged - SQLite XML Using the Documents Library as a database in Windows 8 Store ...


0

Try setting the Height in the GridRowDefinition for Row1 to 150, and remove the Height property in the grdAppointmentInvitation declaration, like so: ... <Grid.RowDefinitions> <RowDefinition Height="150" /> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> ...


2

Looks like WPF team thought that nobody will need this functionality so they haven't included any border around ItemsPresenter in TreeViewItem template, so you are going to have to change TreeViewItem template and add border around ItemsPresenter. You can view default TreeViewItem style/template definition by downloading WPF themes XAML dictionaries. Links ...


0

http://www.c-sharpcorner.com/UploadFile/5439e6/image-slideshow-using-dispatchtimer-in-windows-store-apps/ How about this option? This is example for Win store apps, but i don't see the reason why you couldn't rewrite it to WP


1

You are right, the datacontext is part of the problem,but I would solve it by using mvvm-light as it was designed. If you are using MVVM_Light then your should use the view model locator. Its the main backbone of the framework. I used mvvm light to learn about the mvvm principle. I liked it a lot because it was simple and allowed me to learn with as ...


1

DocumentsLibrary returns a storage folder: StorageFolder documents = KnownFolders.DocumentsLibrary; Now the StorageFolder, or maybe I should say its interface, IStorageFolder has a method CreateFolderAsync with two overloads. The simplest one: StorageFolder newFolder = await documents.CreateFolderAsync("MyDir"); Other overload specifies the behavior ...


0

Yes, now i completed to port my JRIApp javascript framework to typescript. I published it today https://github.com/BBGONE/jRIAppTS Now it is more silverlight like in development style than previous javascript version.


0

Replace this: <xsl:attribute name="x:Name" select="'number_txt_',position()"/> with: <xsl:attribute name="x:Name" select="concat('number_txt_',position())"/> Additionally, this whole fragment: <xsl:element name="TextBlock"> <xsl:attribute name="x:Name" select="'number_txt_',position()"/> <xsl:attribute name="Grid.Row" ...


0

I think there is some misunderstanding in the way you are trying to set the border. Here is the explanation of WindowChrome Class as provided in msdn The WindowChrome class separates the functionality of the window frame from the visuals, and lets you control the boundary between the client and non-client areas of your application window. The ...


1

you could use converters, multi bindings, triggers or template selectors... or a mixture of both <GridViewColumn> <GridViewColumn.CellTemplate> <DataTemplate> <ContentControl ContentTemplateSelector="{StaticResource myCellTemplateSelector}" /> </DataTemplate> </GridViewColumn.CellTemplate> ...


2

Another nice library for Metroesque-styling of WPF apps is Modern UI for WPF. Can be installed via NuGet or as a project template.


1

You can use the KeyboardNavigation.TabIndex on the <TextBlock... /> <TextBlock Text="Focusable TextBlock" Focusable="True" KeyboardNavigation.TabIndex="4" Margin="5"/>


0

Using visual designer, either Blend or the built in Visual Studio is sometimes problematic. Here I would recommend just creating the binding directly in designer. It's easy, fast and you got complete control over it. Data binding overview (Windows Store apps using C#/VB/C++ and XAML)


0

Thank you very much for the answer. I added the converter to the resource library: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:wpftoolkit="http://schemas.microsoft.com/wpf/2008/toolkit" ...


1

For your 2nd problem (not being able to bind controls inside your data template), this is because these controls will use the data context of the their parent template not the data context of the page. To fix this, you'll have to tell these controls the element name with the data context and give it full path of your property. <TextBlock ...


0

Most probably your image file is not showing up in the solution explorer.. Go to your Solution explorer, right click and select "Add" select "existing item" and add your image name.. that should do the trick...


1

You can only bind an ObservableCollection to controls which expect it, like a ListBox or LongListSelector. Additionally, adding a Brush to the TestCollection doesn't fire the non-functional notification since it doesn't call the setter of that property, just modifies the existing object. Make TestCollection a type ColorClass and change the .Add stuff to ...



Top 50 recent answers are included