Extensible Application Markup Language (XAML) is an XML language used for defining user interfaces in WPF and Silverlight
4
votes
0answers
298 views
ItemsControl: How to print WrapPanel on multiple Pages?
I am trying to print this, but only the first page appears.
for example if ItemsControlCodigos has 200 items, only 1 page appears.
How can this be done easily?
<FlowDocumentReader ...
3
votes
0answers
64 views
Cant add using Telerik.UI.Xaml.Controls.Grid namespace
I am trying to use the Telerik RadDataGrid in my project. For starting off I have just copied the code given the "Telerik Controls Example" app. But when I try adding the namespace "using ...
3
votes
0answers
88 views
Restricting panning and zooming windows 8 phone
I am having trouble with zooming on my windows phone 8 app. The problem is that after I zoom out to a certain amount the grid completely disappears off the screen. I have posted the code below. If you ...
3
votes
0answers
280 views
Windows 8 Store App Smooth Orientation Change
I've the following issue:
When I change orientation of my c#+xaml page from landscape to portrait or vice versa there is a half a second or so in which the user can see big blue parts on the screen, ...
3
votes
0answers
61 views
Deferrable content xaml
This code prompt an XamlParseException :
'Set property 'System.Windows.ResourceDictionary.DeferrableContent'
threw an exception.' Line number '15' and line position '14'.
<UserControl ...
3
votes
0answers
77 views
Silverlight TextBox text clarity doesn't match TextBlock clarity - why?
I'm setting the following text options globally in a Silverlight 5 app:
TextOptions.TextFormattingMode = Display
TextOptions.TextHintingMode = Fixed
TextOptions.TextRenderingMode = ClearType
This ...
3
votes
0answers
117 views
Page flip App for Windows Store APP for Surface , Scroll view not working properly
We are developing a PageFlip application for our publication's electronic edition.
we have used some thing like this (this is not exact code)
<FlipView>
<FlipViewItem>
...
3
votes
0answers
77 views
How to auto log on XAML webview using VB
I am making a project for Windows 8 Metro that requires me to log in a local device that has a web interface, for example my router. On the webbrowser control in visual basic I was using ...
3
votes
0answers
188 views
Assembly only used in XAML is not copied to bin folder
In WPF project, references only used in xaml is not copied to bin folder even with CopyLocal set to true, as complained in this post. With MVVM pattern, it is common that 3rd party controls are used ...
3
votes
0answers
314 views
Clicking the gridview column header whole gridview tries to cover the window
I have a Gridview which i am sorting when clicking on the column header, but when i add more items to the gridview and it becomes scrollable, clicking the column header for the first time does not ...
2
votes
0answers
32 views
WPF Disable Window Close and Minimize Button on Tabbing
How can I disable TabStop of minimize, maximize and close button of my Form in WPF?
2
votes
0answers
33 views
Table column width and horizontal alignment
I searched all over the internet and cannot find a simple solution to stretch table columns to the content width, and how to centralize table in the middle of the screen. It is always aligned to the ...
2
votes
0answers
68 views
ContextMenu won't go away after selection
I have the following code that adds a context menu to a textbox on the UI. THe user is suppposed to be able to bring up the context menu and select a new units to be used. So the method CurrentUnits ...
2
votes
0answers
75 views
MediaElement Speed ratio for Windows Phone 8
I'd like to manually set speed ratio for my MediaElement object in Windows Phone 8. There is no SpeedRatio property anymore, and I don't seem to be able to use SmoothStreamingMediaElement (part of ...
2
votes
0answers
64 views
Interactive dynamical wpf grid
I have a collection which I want to place on a grid. The collections items have properties that refer to where on the gird the item should be placed, and how many columns and rows the item should ...
2
votes
0answers
31 views
XAML pages acting different in release mode
I'm developing a WP7 app with a couple of pages. Everything looks fine in debug mode, but when changing to release mode, two bad things happen:
One page remains completely blank (black in dark ...
2
votes
0answers
42 views
WPF/XAML: How to get multiple controls/elements to use the same handler for a non-routed event
I would like to use the same handler for standard non-routed .NET events for several controls. I have the following xaml. Later in the xaml code I declare another ModelVisual3D with a ...
2
votes
0answers
48 views
Design View of a DataTemplate in a ResourceDictionary in Visual Studio
Is there a way to preview GUI in a DataTemplate? e.g. if I have a Resource Dictionary, containing a DataTemplate, and the Data template contains GUI code, like
<DataTemplate ...
2
votes
0answers
80 views
Design time errors (the attachable property x was not found)
I used Blend for VS 2012 to create a template of a WP7.8 application. There were some sample data (located in a separate xaml file, see lower) which were shown in a design mode on the silverlight ...
2
votes
0answers
66 views
wpf binding from child window
I'm learning XAML and I'm having a problem binding content of a control to a settings property from a child window.
Here's a quick example I've made to make it more clear. Calling the child from the ...
2
votes
0answers
75 views
TreeView MasterDetails with ToggleButton
I want to create a MasterDetails TreeView with styles.
From this question I wanted to reuse the toggle button
Here is my XAML
<Window x:Class="TreeViewMasterDetails.MainWindow"
...
2
votes
0answers
146 views
ArgumentOutOfRangeException from SelectionChanged event WinRT
Alright. I'm developing a Windows 8 (WinRT) app with C# and XAML, and I have a listbox which contains quite a few elements fetched from JSON. When you click one of the items, you'll be transferred to ...
2
votes
0answers
160 views
Computing Triangle indices from Point( MeshGeometry3Dposition) in C# 2.0
In WPF 3D Mesh ,I have plot GeometryModel3D Mesh Geoemtry postion i'm computing by Trace Values which i get from the code.
const int n = 10;
//3D Y1-axis
const double centreX1 = 0.0D;
const double ...
2
votes
0answers
113 views
Performance issue with PivotItem swipe gesture containing ListBox with data binding
I've been trying to figure out how to improve the performance of my pivot control which has 4 PivotItems each has listbox with data bind in C#. The loading time has been reduced with BackgroundWorker ...
2
votes
0answers
281 views
Selecting a full row in DataGrid, Silverlight Navigation Application
This might be a stupid question but i haven't been able to find an answer anywhere.
I am trying to make it possible when a user clicks on a certain row in the datagrid the entire row will be ...
2
votes
0answers
306 views
XAML Designer Crashes in Visual Studio 2012
When I load up a XAML file in the designer I get the below exception and then I have to kill VS 2012 from the process manager. Any ideas on work arounds?
...
2
votes
0answers
332 views
pixel align on windows phone 8 devices
I am trying to display a simple fullscreen bitmap on WP8 device (Lumia 920).
It has 1280x768 screen, using ScaleFactor 160 and virtual resolution of 800x480.
Here is the result of displaying ...
2
votes
0answers
207 views
Bind WPF Pie-Chart to sql server
I have created a Pie-chart using WPF Toolkit.
I have to extract the values for Ram Usage from my database table.
At my MainWindow.xaml.cs I have created a DB connection string to establish a database ...
2
votes
0answers
193 views
Empty LongListSelector causes infinite ScrollViewer
This is the situation:
I have a datasource that gets filtered by certain attribute (lets call it Checked), into two lists on the viewmodel. Call it New and Old.
New one needs to be displayed into ...
2
votes
0answers
62 views
Programmatically check Windows Store App update
I'm actually trying to find a way to check if an update is available for a Windows Store App.
Is there a way to do this with an API ?
thanks !
Essam
2
votes
0answers
150 views
Cannot find a Resource with the Name/Key AppBarButtonStyle
Common style included in winrt are getting me an exception
<Button Style="{StaticResource AppBarButtonStyle}" />
this basic code fires Cannot find a Resource with the Name/Key ...
2
votes
0answers
116 views
How to reference viewboxes genereted before each group in the same datatemplate?
I am developing a windows 8 application using C# and XAML. In my DataTemplate, i have 6 viewboxes that are being generated automatically before each group.
I need to specify which one to be generated ...
2
votes
0answers
22 views
How to get a Eclipse like hints in the MS Blend 4
How to get hints in MS Blend 4. In Eclipse this is CTRL+Space, here it does not work.
When I write sth wrong the hint list dissapear and I have to remove chars to the = sign so they will appear again.
...
2
votes
0answers
130 views
Crash when “Create Data Binding” in Blend for Visual Studio 2012
Blend for Visual Studio 2012 always freeze when I click on "Create Data Binding".
I am using Windows 8 Professional 64 bit on MacBook Pro.
Have anyone experience the same error I am having?
2
votes
0answers
73 views
Is there a SharedSizeGroup equivalent for ListViews inside ItemsControl?
I use an ItemsControl representing Countries. For each country I use a ListView for showing its cities:
<ItemsControl ItemsSource="{Binding Countries}">
...
2
votes
0answers
110 views
Text Block with FontStretch is inheriting FontStyle and Weight
I have a WPF control which contains a number of toggle buttons for setting font weight, style, decoration and stretch. In each toggle button there is TextBlock which shows the style.
For some reason ...
2
votes
0answers
84 views
how to solve image slices rotation bug?
I have the two slices of one image which is a ring, the slices are vertical cut of image, so
i have taken grid then,i created two equal columns,then i placed left slice into left column and right ...
2
votes
0answers
73 views
Silverlight Navigation Property not Binding in XAML
I am facing a peculiar problem. I have an edmx file loaded with some entities. Some of them has navigation properties. I am using a Domain service class to fetch the data. The linq query is as ...
2
votes
0answers
107 views
WPF Frame serving cached page
I am writing a help system for a WPF application. I came up with a system where the content owner will build templates in a simplified XML format that is transformed with XSLT to XAML through an ...
2
votes
0answers
710 views
WinRT ItemsControl with Zoom, Horizontal scrolling and centered content
I've been battling this for hours now, and cant seem to find a way to solve my problem.
My issue is, I have an items control which takes up the whole screen. It displays a horizontal list of images, ...
2
votes
0answers
85 views
Il(d)asm roundtrip with xaml and other resources?
I have a C# assembly foo.exe that I'm trying to dissasemble, modify and reassemble. The exe references a bunch of other assemblies, uses xaml for UI and has some managed and some unmanaged resources.
...
2
votes
0answers
231 views
Windows 8 Metro Print embedded webpage within WebView
In Windows 8 Metro, I want to print a webpage hosted in a WebView control.
Does the WebView control have a document that I can point to in order to invoke printing?
I want a user to be able to print ...
2
votes
0answers
271 views
Visual Studio 2012 XAML Designer Vertical Split Can't Be Set As Default?
Is there only Horizontal Split as default and not Vertical Split? Again or my eyes are going bad? It was an issue in VS2008 and VS2010 when it was per-file basis so nothing has changed?
2
votes
0answers
233 views
Validation.HasError not firing for a DataGrid validating against IDataErrorInfo
I have a DataGrid using an inline style that adds a tooltip for reporting error messages - I am binding it to a collection implementing IDataErrorInfo.
In particular, I have a column bound to an ...
2
votes
0answers
265 views
ResourceDictionary organization
There are two decent online resources on this topic that I know of, XAML Guidelines and this less complete one.
And I still don't quite get it!
For example, say I have two projects:
...
2
votes
0answers
410 views
DragLeave and DragEnter are not working
On a canvas I have placed a and inside of the Dock an is located as following:
<DockPanel DragEnter="DockPanel_DragEnter" DragLeave="DockPanel_DragLeave">
<Expander Header="Controls" ...
2
votes
0answers
595 views
Declarative GridView in XAML in WinRT
Is there a way to define a GridView purely declaratively in XAML? Every example I see defines the Category/Group Name value in code behind, then each item has a Title / Subtitle. I would really like ...
2
votes
0answers
338 views
How to set logical focus without giving keyboard focus?
How can I in code define the logical focus of a container, or focused child, WITHOUT giving it keyboard focus ?
I just want to control which child will get the focus when the control will get focus ...
2
votes
0answers
920 views
Cannot bind to TabItem DataContext from the TabItem Content in Silverlight
I have a TabItem that has it's DataContext set to a ViewModel.
The header is set to a header View and the Content is set to an item view
However this Binding from the item view just doesn't work
...
2
votes
0answers
93 views
How to dynamically change GlyphIndices in tag GlyphRun?
I'd like to show some text dynamically in XAML (GlyphRunDrawing) by binding GlyphIndices to some string in my C# code, but it does not work well.
The code below works well:
GlyphRunDrawing ...



