|
In window form i can create 1 image and drag it from 1 place to another by:
Image_MouseDown, Image_MouseMove and Image_MouseUp but in WPF i make 1 grid(create 5 row and 5 column) and i add child (image) to row 2 and column 2 then 1 make same events but i can't drag it.
please make a solution .
Thank.Sorry for my english !
|
|
|
|
|
It works the same way, the only thing is, the way that things are laid out in WPF is a little different. What have you tried ?
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
The grid have 5 ColumnDefinitions and 5 RowDefinitions.
If image i can get current Column and Row by GetValue(Grid.RowProperty) and GetValue(Grid.ColumnProperty)
. But i don't know how to get current Column and Row of Mouse.
If know i can SetValue.
Thank !
|
|
|
|
|
Oh, you want to know what column and row the mouse is over ? I'd imagine you'd need to turn the rows and columns into pixel positions to calculate that, but then, if you caught the mouse move event in each grid square, you could just track which square control got the event last.....
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Can you show me how to "caught the mouse move event in each grid square".
Thank 
|
|
|
|
|
The grid doesn't really have grid squares. It has column/row definitions
that define the grid squares. These definitions are used to layout elements
"in" the grid squares.
So put elements in the grid squares, and subscribe to events on those elements.
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Thanks for explaining that a bit better than I did
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I've got your back.
Gives you more time to focus on NullReferenceException issues.
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
I have a grid gr and divided it into 5 row, 5 column and placed a Image in it
Image tem = new Image();
tem.Source = new BitmapImage(new Uri("..."));
gr.Children.Add(tem);
tem.SetValue(Grid.ColumnProperty,0);
tem.SetValue(Grid.RowProperty,0);
tem.MouseLeftButtonDown += new MouseButtonEventHandler(tem_MouseLeftButtonDown);
tem.MouseLeftButtonUp+= new MouseButtonEventHandler(tem_MouseLeftButtonUp);
tem.MouseMove += new MouseButtonEventHandler(tem_MouseMove);
Now, i want to make tem_MouseLeftButtonDown, tem_MouseLeftButtonUp, tem_MouseMove to move Image from (row=i,column=j) to (row=Mouse point,column=Mouse point), in window form i can but in wpf i can't.
Sorry for my english.
Thank 
|
|
|
|
|
The Grid control, being a Panel element, is suited for layout
of child elements. For what you are doing, it would be much simpler
to use another simpler panel like a Canvas and keep track of the
cell coordinates yourself.
That's just my opinion. You could do it with a Grid, but when I picture
the code in my head, it looks way messier than it would be using a canvas.
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Yes, I was thinking that, too. I am assuming he wants the image to jump between cells, not move smoothly, but even then, it makes more sense to track positions than use an actual grid, IMO.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Agreed. I was thinking mostly of the hit-testing being messy,
but looking again, I see that WPF drag and drop could be used with
drop targets in each cell to let the framework do a lot of that.
That may even be simpler than using a canvas
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
|
I am newbie to WPF development. We need to develop a kisok application, so is there any sample opensource kiosk project available to learn.
Is there any concept similar to Asp.net master page in WPF. It would be great if you guys can direct us to some similar sample application
|
|
|
|
|
What sort of application do you need to build ? What will it do ? Who is it for ? By kiosk, you just mean that it will fill the entire screen ? Will it work with a touch screen ? You've done ASP.NET then and you're just new to WPF ?
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Christian Graus wrote: What sort of application do you need to build ?
This application is used in Hotels where customers can get informations
Christian Graus wrote: By kiosk, you just mean that it will fill the entire screen ?
Yes it's a full screen application. Which runs on kiosk machines
Christian Graus wrote: Will it work with a touch screen ?
Yes it should work on touch screen
Christian Graus wrote: ou've done ASP.NET then and you're just new to WPF
Yes I have worked with ASP.net. This project is going to be my first WPF work.
My queries are
1. Is there any Masterpage type concept in WPF.
I have gone through some sample application. There will be a main window and each content area is created as an user control. All user controls will be placed in main window and show/visible one at a time. I like the idea of creating it as a separate control. Is there any way to dynamically load when needed (Same as placing a panel in ASp.net). A animation affect which will make the transition looks better.
I would be great if you can share some of your ideas/Sample application familer. This project has a tight deadline and we don't have enough time to train ourself completely.
|
|
|
|
|
Whoah - you don't have enough time to train yourselves completely and you're coding to a tight deadline on a WPF application. You do know that WPF has a huge learning curve don't you? It's more a learning precipice than curve, and you can't just throw yourself at it and hope that something sticks.
You need to raise this with your project manager right now - you're undertaking a development in a new technology without adequate research and training, and you have a tight deadline. There is too much risk there, and she needs to start making some decisions right now otherwise you are not going to deliver the application or the application is going to be an unmaintainable mess - either way, the client has been hosed.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
|
|
|
|
|
Pete O'Hanlon wrote: you can't just throw yourself at it and hope that something sticks.
I did, and it f*ckin' hurts.
.45 ACP - because shooting twice is just silly ----- "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997 ----- "The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001
|
|
|
|
|
That's the funniest answer I've read today.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
|
|
|
|
|
Yes thats true. Project manager is not a good technical person and he is not aware of WPF concepts. He committed deadline thinking that there is nothing new in this technology. He will stick on this comments . So we have to do something from our side.
|
|
|
|
|
I agree - a project which is your first with WPF AND has a tight deadline, can only be a disaster. WPF changes so many things, I'd not recommend anyone do their first commercial project in it, unless they have a lot of time, or have done a lot of work at home first.
Having said that, a kiosk application seems like it's pretty simple. I am not sure, but I believe there was an early proof of concept of WPF which is freely available which was basically a kiosk application, it had a 3D rotating group of videos on it. That might be worth looking at. The touch screen stuff takes care of itself, just build a UI where all the buttons are big enough to touch.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Christian Graus wrote: just build a UI where all the buttons are big enough to touch
I made my button as big as the screen.....it does nothing when I touch it.
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Hello,
How can I call a MVC controller method in Silverlight en give the method some parameters.
The parameter wil be a IList.
Thanks,
|
|
|
|
|
|
Hi,
I am working on a silverlight application. In this I need to send mail from a .aspx page. But while sending mail I am getting the below exception
"The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required."
Code I hve written is
string to = "test2@gmail.com";
System.Net.Mail.MailMessage MyMailMessage = new System.Net.Mail.MailMessage("test1@gmail.com", to,"Hi", "Test");
MyMailMessage.IsBodyHtml = true;
System.Net.NetworkCredential mailAuthentication = new
System.Net.NetworkCredential("test1@gmail.com", "pswpsw");
System.Net.Mail.SmtpClient mailClient = new System.Net.Mail.SmtpClient("smtp.gmail.com", 587);
mailClient.EnableSsl = true;
mailClient.UseDefaultCredentials = false;
mailClient.Credentials = mailAuthentication;
mailClient.Send(MyMailMessage);
If you have have any idea to solve this please reply me.
Thanks in advance.
|
|
|
|