Tagged Questions
0
votes
0answers
23 views
Backgrounworker thread which returns WPF UI
I have created an WPF AddIn application, which i am hosting it in a Winform Window. The issue i am facing is that i want to show a splash screen, when i call the method which returns me the WPF UI and ...
2
votes
0answers
58 views
Visual studio 2010 addin “Edit.Copy” Command
I created some Addin for VS2010 Which present some toolwindow with some WPF application.
I have some command in my WPF app for example Copy, Paste and etc, which I want to bind to the VS command.
So ...
0
votes
1answer
74 views
Visual Studio 2010 Add-in Handling shortcut instead my WPF APP
I have some Add-in to VS2010 which was written in WPF. My WPF App handles some basic shortcuts.
Previously, My WPF was stand alone app, and I handled some basic command (lice Copy, paste etc) using ...
2
votes
1answer
201 views
Strange behavior when showing WPF window in Outlook
I use the following code to show my WPF window from the new message window in Outlook:
private void DisplayWindow(Window window) {
var wih = new ...
1
vote
0answers
59 views
Optimizing WPF Add-In Activation
Are there any optimization tricks for activating a WPF Add-In? My current AddIn activates in roughly 5-6 seconds but because it is being loaded on the UI thread, the UI is blocked for this duration. ...
1
vote
1answer
99 views
Exceptions in WPF Word Addin are not being handled
I am creating a WPF Office add in, and I would like to handle all exceptions in one place. To do this I use the following code in the constructor of my MainWindowViewModel:
...
1
vote
0answers
212 views
UnhandledExceptionFilter catches all exceptions but only rethrows some exceptions
I'm developing a Word Add-in using WPF windows. I'm using an UnhandledExceptionFilter to catch any unhandled exceptions so that Word doesn't throw an error message.
...
1
vote
1answer
232 views
Catch C# WPF unhandled exception in Word Add-in before Microsoft displays error message
I am developing a Microsoft Word Add-in using C# and WPF.
In one of my windows, a helper class is throwing an exception in an event. I want the exception to bubble up to the window level so that I ...
0
votes
0answers
342 views
WPF window shows blank
Excel AddIn, c#, .net 4.0, windows 7, ribbon
my addin has a ribbon tab, several ribbon buttons,
when one ribbon is clicked, the addin will send several web service calls and a window will pop up ...
0
votes
1answer
201 views
Using Sharpdevelop Addin Architecture to develop WPF application
I am new to this AddIns architecture but it really seems fascinating to me. I downloaded shardevelop code to understand it but it is too huge and the examples given are using Winforms. I want to use ...
0
votes
0answers
310 views
InvalidOperationException is thrown when a ribbon is clicked
Excel AddIn written in C#, .NET4.0, VS2010, When a ribbon is clicked, the exceptio is thrown.
In ribbon click event handler, I basically initialize a WPF window and ShowDialog
...
0
votes
2answers
102 views
open wpf window in Revit as add ins
I made a project using WPF and I want to open its window in Revit I trying windows form it worked but wpf not opened !!
I use this
public virtual Result Execute(ExternalCommandData commandData, ...
1
vote
1answer
329 views
WPF form in VSTO Outlook Add-In - data entry issues
I have a VSTO (.net 4) Outlook Add-In which opens a WPF form.
There are a number of controls on the form, including 2 textboxes.
If I open the form when I have an email selected (with focus) in the ...
0
votes
1answer
68 views
TreeView with AddIn
I have a TreeView with ItemsSource being nodes from different types.
class Node
class Folder : Node
class Project : Folder
All 3 classes are defined in the main project. And the xaml I currently ...
0
votes
2answers
166 views
How to add a new wpf page into a powerpoint add-in?
I created an add-in for PowerPoint and I want to add a new WPF window to it. It seems that when I am not able to do this as there is no support to add a WPF form into add-in project. What can I do? ...
0
votes
0answers
103 views
Microsoft Office Add-Ins
I have a question about Add-ins to outlook 2010. I would like show my own application (WPF) in Outlook. But I don't know how. I find only something about form region but it is not that I want. Thank ...
3
votes
1answer
355 views
Visual Studio: How to write Editor Extensions with WPF
Im trying to write a editor extension for Visual Studio. I have the downloaded VS SDK and created a new Visual Studio Package project. But the dummy control created for me is a Windows Forms control ...
2
votes
1answer
376 views
Insert WPF user controls in VSTO ribbons
I develop an Excel 2007 add-In using VS 2010 and existing WPF user controls. With the aid of ElementHost it is easy to integrate the controls in task panes and windows, but I found no way to integrate ...
3
votes
0answers
193 views
VSTO WPF Outlook addin - Problems refreshing an ElementHost containing WPF content after resize
I have an outlook addin that adds a custom taskpane to the right side of Outlook Explorer. In the taskpane I have added a UserControl that contains an ElementHost. The ElementHost has as a Child a WPF ...
0
votes
1answer
178 views
Error running a WPF/PRISM app from an ArcGIS desktop add-in button, unable to load modules
When I tried running a WPF app that uses PRISM from a button add-in in ArcMap, the OnClick event goes as far as initializing and showing the Shell.xaml but when it tries to load the modules and the ...
0
votes
0answers
396 views
Windows.ShowDialog throws an exception
Excel AddIn using NetOffice, ExcelDNA, C#, VS2010, .NET 3.5,
I have a ribbon button, when it is clicked, FuncBtnClick is called. in the click handler, it calls a WPF window and show it as dialog. ...
1
vote
1answer
102 views
Need help creating Hotkeys for WPF controls hosted in a Word application ADDIN
I created a word application addin which will host couple of WPF controls.
I have to define some hotkeys for wpf buttons.
So I went ahead and created the same and added them to the inputbindings of ...
12
votes
2answers
5k views
How to debug binding in WPF
I have a VS2008, C# WPF, Excel AddIn; Under some case, My addin throws exception like
A first chance exception of type 'System.InvalidOperationException' occurred in PresentationFramework.dll
A ...
0
votes
1answer
91 views
Hosting windows add-in in wpf application
We have a windows add-in called DataStream Charting which can be used as add-in in Microsoft word that is a windows application as in the below image:
How to host the same windows add-in in Wpf ...
0
votes
2answers
288 views
Catch Exception in AddInToken.Activate<T>()
I use MAF and I have a problem with activating the addin. Let me explain my plan.
First I create a secondary AppDomain then I try to activate the addin:
MyAddIn = ...
1
vote
1answer
112 views
How do I subscribe to the proper events in Visual Studio 2010 package development?
I recently got into Visual Studio 2010 package development, with the Visual Studio 2010 SDK. I've got my debugging environment all set up, and everything is working as it should.
However, my add-on ...
1
vote
1answer
397 views
WPF UI AddIn not updating its desired size
I have an application that gets one of its UI controls via an INativeHandleContract from a different AppDomain. When the size of the control changes the FrameworkElement in the host doesn't get an ...
7
votes
2answers
588 views
How can I create a custom image adorner add-in for numerical arrays in Visual Studio 2010?
I work with a lot of floating-point images, and would find it extremely useful to have an image-based representation of my arrays. I'd like to create a WPF UserControl that renders the data array (as ...
0
votes
1answer
488 views
How to create custom WPF ribbon tab for COM AddIn
I have a shared COM AddIn (not VSTO) for excel 2003, now I want to add a ribbon tab to support excel 2007.
I did some research online.
know that I need reference 2007 PIA, implement
...
0
votes
1answer
213 views
Excel WPF Addin Drag Drop Error
I created a Sidebar in Excel using WPF, and trying to drag some some objects from the WPF Pane to the spreadsheet. The Application object in WPF is null. Please guide me how to Achieve this Drag-Drop ...
0
votes
1answer
255 views
Deploying ClickOnce Application With System.AddIn Support
I have a ClickOnce app that I would like to have MAF (System.AddIn) support with.
I have learned about the System.AddIn Pipeline structure and such in a local context, but when it comes to ClickOnce, ...
0
votes
2answers
46 views
Is the “VistaBridge” compatible with Windows XP?
I'm wondering if VistaBridge is compatible with Windows XP? I'm running Windows 7 so I can't test it.
Have you tried it on Windowx XP? Please let me know.
Nam.
0
votes
2answers
148 views
Which technology should I use to pop up a simple form in my add-in DLL?
I'm building an assembly that runs as an "add-on" to a vendor's Outlook add-in. When it is time for me to execute my "action", I have to put up a simple window with a few simple controls. The ...
0
votes
1answer
546 views
keep focus in a WPF combo box in an addin
I have a combobox in a Word addin. The contents of the combobox are often long enough to drape over Word's Zoom slider-bar control. However, selecting an item directly over the zoom control (which is ...
2
votes
2answers
102 views
How do I extend a WPF application using an addin-like architeture?
Lets say I have a WPF application that shows a ListBox with an ArrayList -populated with objects of arbitrary types- as a source, and this application is hosted in an assembly 'A'. By default the ...
0
votes
3answers
222 views
WPF - Evaluation of Lambdas in XAML
I am writing an app in WPF. It is getting tiresome making all my converters for simple stuff.
I looked around and found WPFix. It seems nice, but has not had any releases in almost a year and is ...
0
votes
0answers
243 views
WPF resources addin
I have a WPF application that runs as an add-in in another application.
(In this case it is COM based but I don't think it matters for the problem I have)
The application works fine when I run it ...
6
votes
3answers
3k views
Building a highly modular business application with WPF?
I'm fleshing out a WPF business application in my head and one thing that sparked my interest was how I should handle making it incredibly modular. For example, my main application would simply ...
1
vote
1answer
832 views
How can I speed up the opening of a WPF window in a VS add-in?
I have a Visual Studio add-in which opens a modal WPF window.
My problem is that the first time round, it takes 4 seconds for the window to appear which is a clear disservice to the client. So I'm ...
3
votes
2answers
833 views
NullReferenceException when hosting WPF in a System.AddIn
We are developing a WPF application that uses the System.AddIn framework to host add-ins that display additional WPF content. Everything seems to be working fine, but overnight, the application threw ...


