|
Thanks man, but I have very less time in hand. Hmm... just a week. Fine but I feel still it will be great to just do, since such scenario is quite rare and some people will surely come across it. Though I want to show the output within a week, I have a thought of extending my work for more time after I show the output, since I am seriously loving what I am doing and want to take things to perfection. If you get the time and you feel that other people will like it, just do that.
Anyway thanks a lot. And yes any quick advice to do this quickly 
|
|
|
|
|
If you want to see how others have handled theming, you might want to take a look at this[^] project. The code is freely available, and simple to understand.
|
|
|
|
|
|
How to config and upload/download file into the domain by filezilla?
Which is the folder in host site where the project home file will be uploaded?
|
|
|
|
|
Is this related to Silverlight somehow? If so, what code do you currently have? Without that, it will be hard to guide you further.
|
|
|
|
|
You can host Silverlight on a Linux server! Really...
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
|
Is it possible to drag items (e.g. images) out of a Silverlight 5 application and drop it to another target (on desktop)? Any ideas if and how this is working? I guess this would be only possbile running the application out-of-browser with elevated trust settings enabled.
|
|
|
|
|
|
This example shows how to drop items INTO a Silverlight application and only mentions that "you cannot drag and drop objects between applications". I also think the link you posted is from 2009. Maybe in Silverlight 5 it is possible to drop FROM the Silverlight app TO another application?
|
|
|
|
|
Uhm how do you expect Silverlight to manage the target application, that is where you need to deal with the drop operation. If you could embed the target in the Silverlight app you may have a chance (like the old com object in winforms) but you can't do that anyway.
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
how I can adjust the size of the iamge for what will be displayed in the picbox and does not appear with a large
if (newdialog.ShowDialog () == DialogResult.OK)
{
txtpiece.Text = newdialog.FileName;
PicBox.Image Image.FromFile = (newdialog.FileName);
PicBox.Enabled = false;
}
|
|
|
|
|
Good evening, I am trying to develop an application with c # for sending emails, I developed a small publisher in a solution at hand, and I develop the game of sending mail to a solution by dna, how can I integrate the editor in the area of text that is at the 2 nd solution, is what I added commme reference? and how can I put in the form of the second solution?
|
|
|
|
|
DON'T CROSSPOST!!
The difficult we do right away...
...the impossible takes slightly longer.
|
|
|
|
|
You have been told many times now. Stop cross posting.
|
|
|
|
|
|
Hello guys!
First I want to say that I'm quite new to WPF and XAML programming languages.
I'm currently trying to make a calendar (Custom Control) in WPF and to be onest I'm not quite sure how to approach this task. Although I've searched all over the internet I couldn't find a pleasing answer. This is the link where I've found some ideas:
http://stackoverflow.com/questions/2125987/create-a-custom-full-sized-calendar-control[^]
Right now I'm thinking on making 3 diffrent Custom Controls which will get combined to create the Calendar. The explications are in the image below:
http://imageshack.us/photo/my-images/851/explicatii.jpg/[^]
I've chosen this approach because will be very easy to create the design and the effects on MouseOver and MouseClick events, but the main problem with it is that I'm not sure on how I can create the logistics of the Calendar:
1st problem: How to bind the data between all of this Controls in order to create the logistics of a basic Calendar;
2nd problem: If the appoiment is longer than 1 day is there a chance to bind the data between this and the next Custom Control (this day and next day, because every day will be a Costum Control).
My question is if this is a good approach? And, if it isn't could you please help me out with some ideas?
Thanks in advance!

|
|
|
|
|
|
Don't crosspost. Pick a forum and stick with it.
|
|
|
|
|
Hi all,
i have ListBox with menu and MenuItem_PreviewMouseDown:
private void MenuItem_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
if (listBoxFiles.Items.Count != 0)
{
Point point = PointToScreen(Mouse.GetPosition(this));
}
}
as you can see i already have the Point who represent the file who clicked on the mane, how can i find the index who represent the file from my ListBox ?
thanks
|
|
|
|
|
Use the VisualTreeHelper's VisualTreeHelper.FindElementsInHostCoordinates method[^].
|
|
|
|
|
i have Listbox with files in, i want to able to right click and open a menu like Delete in order to remove files from the Listbox.
currently i have this function after right click on item inside my Listbox
private void listBoxFiles_PreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e)
{
}
and i implement at XAML Delete menu after right click
<ListBox.ContextMenu>
<ContextMenu>
<MenuItem Header="Delete"/>
</ContextMenu>
</ListBox.ContextMenu>
|
|
|
|
|
how can I insert an html editor in a windows forms or wpf
thank you in advance
|
|
|
|
|
Please don't repost questions.
|
|
|
|
|
Here[^] is an editor which could be of some assistance to you.
|
|
|
|