I have this window with an image defined as background , ok, but note that the image is not occupying the entire window.
How can I remove these borders?
Remembering that the window has the following properties in XAML:
AllowsTransparency="...
Hello, I'm using MVVM where I have an abstract class as default for my ViewModels:
public abstract class ViewModel : INotifyPropertyChanged
{
public void Set<T>(ref T property, T value, [CallerMemberName]string propertyName = "")...
I'm developing a WPF application, and in it, I need each Label to have a Balloon, for example, Name * (full name);
can anybody help me? I would like to do in pure WPF, but if it does not, is there any simple way to do it?
In ios it looks like this:
Andinandroid: I'vebeentryingtosolvefortwodays,Ialreadyresearchedgoogle,Idideverythinginthecodebutnothing.Here'sapartofthecode:<StackLayoutOrientation="Horizontal">
<Label Margin="1...
Hello, I'm coming from WPF where it is possible to create my style files in separate files and from them use in my% s of% s the same style settings. I did some (many) searches and found some references like this:
link
But unfortunately I...
I'm having some doubts about the MVVM architecture.
I'm developing a project that has the following features:
- Main form with dynamic content
- Main form generates some tabs according to the configuration
- Each tab generates some panels acc...
I have this method that is called when I click on ImageView
private void _imgRoute_Touch(object sender, View.TouchEventArgs e)
{
if (_examStarted)
{
if (e.Event.Action == MotionEventActions.Down)
{
float x = e....
I have a XAML (Cadastro.xaml) where I made a TextBox and a PasswordBox and named them as txtCpf and txtSenha , until then without any problem.
When I'm going to use them in Cadastro.xaml.cs , I can not and the...
Hello, I'm working with XAML and I'm lost with a problem. I have to, based on a value of type int? I should return the visibility of a TextBox , being Visibility.Collapsed or Visibility.Visible . Example
In XAML cla...