Image is not visible in Gridview in wpf












0















I am trying to display images along with data in listview data item.I am able to see the text item in the List view but not able see the image .I am binding Image with image file path.Same image path is working fine outside the listview in the same page.But inside the List view it is not showing the image .But the border(Yellow) surrounding the image control is visible in the list view .Please help to find the solution



<



ListView Name="lvUsers" Grid.Column="1" Grid.Row="1" Margin="0,5,0,0" Height="Auto" 

Background="{x:Null}" BorderBrush="{x:Null}"
ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto"
VirtualizingStackPanel.IsVirtualizing="True" ScrollViewer.CanContentScroll="True"
SelectionMode="Single" IsSynchronizedWithCurrentItem="True"



IsEnabled="True">
<ListView.View >
<GridView >

<GridViewColumn Width="50" >
<GridViewColumn.CellTemplate>
<DataTemplate>
<Border Width="30" Height="30" Background="Yellow" >
<Image Width="10" Height="10" Stretch="Fill" Source="{Binding Path=DisplayedImage, Mode=Default}" HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>


<GridViewColumn Width="120" DisplayMemberBinding="{Binding EmpName}">
<GridViewColumn.Header>
<GridViewColumnHeader Tag="EmpName" Click="lvUsersColumnHeader_Click">Name</GridViewColumnHeader>
</GridViewColumn.Header>
</GridViewColumn>

</GridView>
</ListView.View>
</ListView>

<Border Width="30" Height="30" CornerRadius="10,10,10,10 " >
<Image x:Name="Avatar" Source="{Binding Path=DisplayedImage, Mode=Default}" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</Grid>


</UserControl>


My code behind as follow:
Name space and page intiatization code:



using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Configuration;
using System.Data;
using System.Windows.Input;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;


public ProjectTracker()
{
InitializeComponent();


List<DataTable> items = new List<DataTable>();

items.Add(loademp());

lvUsers.ItemsSource = loademp().DefaultView;
DataContext = new MainSideBar_viewModel();


}


Object in view model for image source binding :



   public string DisplayedImage
{

get { return @"C:faisalXerox2014wpfgsktidP11376fs2.JPG"; }

}









share|improve this question




















  • 1





    lvUsers.ItemsSource = loademp().DefaultView; makes no sense at all. Did you perhaps intend to write lvUsers.ItemsSource = items;? And is DisplayedImage a property of DataTable?

    – Clemens
    Nov 21 '18 at 19:50


















0















I am trying to display images along with data in listview data item.I am able to see the text item in the List view but not able see the image .I am binding Image with image file path.Same image path is working fine outside the listview in the same page.But inside the List view it is not showing the image .But the border(Yellow) surrounding the image control is visible in the list view .Please help to find the solution



<



ListView Name="lvUsers" Grid.Column="1" Grid.Row="1" Margin="0,5,0,0" Height="Auto" 

Background="{x:Null}" BorderBrush="{x:Null}"
ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto"
VirtualizingStackPanel.IsVirtualizing="True" ScrollViewer.CanContentScroll="True"
SelectionMode="Single" IsSynchronizedWithCurrentItem="True"



IsEnabled="True">
<ListView.View >
<GridView >

<GridViewColumn Width="50" >
<GridViewColumn.CellTemplate>
<DataTemplate>
<Border Width="30" Height="30" Background="Yellow" >
<Image Width="10" Height="10" Stretch="Fill" Source="{Binding Path=DisplayedImage, Mode=Default}" HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>


<GridViewColumn Width="120" DisplayMemberBinding="{Binding EmpName}">
<GridViewColumn.Header>
<GridViewColumnHeader Tag="EmpName" Click="lvUsersColumnHeader_Click">Name</GridViewColumnHeader>
</GridViewColumn.Header>
</GridViewColumn>

</GridView>
</ListView.View>
</ListView>

<Border Width="30" Height="30" CornerRadius="10,10,10,10 " >
<Image x:Name="Avatar" Source="{Binding Path=DisplayedImage, Mode=Default}" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</Grid>


</UserControl>


My code behind as follow:
Name space and page intiatization code:



using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Configuration;
using System.Data;
using System.Windows.Input;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;


public ProjectTracker()
{
InitializeComponent();


List<DataTable> items = new List<DataTable>();

items.Add(loademp());

lvUsers.ItemsSource = loademp().DefaultView;
DataContext = new MainSideBar_viewModel();


}


Object in view model for image source binding :



   public string DisplayedImage
{

get { return @"C:faisalXerox2014wpfgsktidP11376fs2.JPG"; }

}









share|improve this question




















  • 1





    lvUsers.ItemsSource = loademp().DefaultView; makes no sense at all. Did you perhaps intend to write lvUsers.ItemsSource = items;? And is DisplayedImage a property of DataTable?

    – Clemens
    Nov 21 '18 at 19:50
















0












0








0








I am trying to display images along with data in listview data item.I am able to see the text item in the List view but not able see the image .I am binding Image with image file path.Same image path is working fine outside the listview in the same page.But inside the List view it is not showing the image .But the border(Yellow) surrounding the image control is visible in the list view .Please help to find the solution



<



ListView Name="lvUsers" Grid.Column="1" Grid.Row="1" Margin="0,5,0,0" Height="Auto" 

Background="{x:Null}" BorderBrush="{x:Null}"
ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto"
VirtualizingStackPanel.IsVirtualizing="True" ScrollViewer.CanContentScroll="True"
SelectionMode="Single" IsSynchronizedWithCurrentItem="True"



IsEnabled="True">
<ListView.View >
<GridView >

<GridViewColumn Width="50" >
<GridViewColumn.CellTemplate>
<DataTemplate>
<Border Width="30" Height="30" Background="Yellow" >
<Image Width="10" Height="10" Stretch="Fill" Source="{Binding Path=DisplayedImage, Mode=Default}" HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>


<GridViewColumn Width="120" DisplayMemberBinding="{Binding EmpName}">
<GridViewColumn.Header>
<GridViewColumnHeader Tag="EmpName" Click="lvUsersColumnHeader_Click">Name</GridViewColumnHeader>
</GridViewColumn.Header>
</GridViewColumn>

</GridView>
</ListView.View>
</ListView>

<Border Width="30" Height="30" CornerRadius="10,10,10,10 " >
<Image x:Name="Avatar" Source="{Binding Path=DisplayedImage, Mode=Default}" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</Grid>


</UserControl>


My code behind as follow:
Name space and page intiatization code:



using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Configuration;
using System.Data;
using System.Windows.Input;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;


public ProjectTracker()
{
InitializeComponent();


List<DataTable> items = new List<DataTable>();

items.Add(loademp());

lvUsers.ItemsSource = loademp().DefaultView;
DataContext = new MainSideBar_viewModel();


}


Object in view model for image source binding :



   public string DisplayedImage
{

get { return @"C:faisalXerox2014wpfgsktidP11376fs2.JPG"; }

}









share|improve this question
















I am trying to display images along with data in listview data item.I am able to see the text item in the List view but not able see the image .I am binding Image with image file path.Same image path is working fine outside the listview in the same page.But inside the List view it is not showing the image .But the border(Yellow) surrounding the image control is visible in the list view .Please help to find the solution



<



ListView Name="lvUsers" Grid.Column="1" Grid.Row="1" Margin="0,5,0,0" Height="Auto" 

Background="{x:Null}" BorderBrush="{x:Null}"
ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto"
VirtualizingStackPanel.IsVirtualizing="True" ScrollViewer.CanContentScroll="True"
SelectionMode="Single" IsSynchronizedWithCurrentItem="True"



IsEnabled="True">
<ListView.View >
<GridView >

<GridViewColumn Width="50" >
<GridViewColumn.CellTemplate>
<DataTemplate>
<Border Width="30" Height="30" Background="Yellow" >
<Image Width="10" Height="10" Stretch="Fill" Source="{Binding Path=DisplayedImage, Mode=Default}" HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>


<GridViewColumn Width="120" DisplayMemberBinding="{Binding EmpName}">
<GridViewColumn.Header>
<GridViewColumnHeader Tag="EmpName" Click="lvUsersColumnHeader_Click">Name</GridViewColumnHeader>
</GridViewColumn.Header>
</GridViewColumn>

</GridView>
</ListView.View>
</ListView>

<Border Width="30" Height="30" CornerRadius="10,10,10,10 " >
<Image x:Name="Avatar" Source="{Binding Path=DisplayedImage, Mode=Default}" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</Grid>


</UserControl>


My code behind as follow:
Name space and page intiatization code:



using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Configuration;
using System.Data;
using System.Windows.Input;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;


public ProjectTracker()
{
InitializeComponent();


List<DataTable> items = new List<DataTable>();

items.Add(loademp());

lvUsers.ItemsSource = loademp().DefaultView;
DataContext = new MainSideBar_viewModel();


}


Object in view model for image source binding :



   public string DisplayedImage
{

get { return @"C:faisalXerox2014wpfgsktidP11376fs2.JPG"; }

}






c# wpf data-binding






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 '18 at 19:46







Faisal Thayyil

















asked Nov 21 '18 at 19:28









Faisal ThayyilFaisal Thayyil

316




316








  • 1





    lvUsers.ItemsSource = loademp().DefaultView; makes no sense at all. Did you perhaps intend to write lvUsers.ItemsSource = items;? And is DisplayedImage a property of DataTable?

    – Clemens
    Nov 21 '18 at 19:50
















  • 1





    lvUsers.ItemsSource = loademp().DefaultView; makes no sense at all. Did you perhaps intend to write lvUsers.ItemsSource = items;? And is DisplayedImage a property of DataTable?

    – Clemens
    Nov 21 '18 at 19:50










1




1





lvUsers.ItemsSource = loademp().DefaultView; makes no sense at all. Did you perhaps intend to write lvUsers.ItemsSource = items;? And is DisplayedImage a property of DataTable?

– Clemens
Nov 21 '18 at 19:50







lvUsers.ItemsSource = loademp().DefaultView; makes no sense at all. Did you perhaps intend to write lvUsers.ItemsSource = items;? And is DisplayedImage a property of DataTable?

– Clemens
Nov 21 '18 at 19:50














1 Answer
1






active

oldest

votes


















0














You could use a RelativeSource to bind to a property of the view model from within the CellTemplate:



<GridViewColumn Width="50" >
<GridViewColumn.CellTemplate>
<DataTemplate>
<Border Width="30" Height="30" Background="Yellow" >
<Image Width="10" Height="10" Stretch="Fill"
Source="{Binding Path=DataContext.DisplayedImage, RelativeSource={RelativeSource AncestorType=ListView}}"
HorizontalAlignment="Center" Margin="0,0,0,0" />
</Border>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>


The default DataContext of the Image is an item in the ItemsSource and this one has no DisplayedImage property apparently.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419273%2fimage-is-not-visible-in-gridview-in-wpf%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You could use a RelativeSource to bind to a property of the view model from within the CellTemplate:



    <GridViewColumn Width="50" >
    <GridViewColumn.CellTemplate>
    <DataTemplate>
    <Border Width="30" Height="30" Background="Yellow" >
    <Image Width="10" Height="10" Stretch="Fill"
    Source="{Binding Path=DataContext.DisplayedImage, RelativeSource={RelativeSource AncestorType=ListView}}"
    HorizontalAlignment="Center" Margin="0,0,0,0" />
    </Border>
    </DataTemplate>
    </GridViewColumn.CellTemplate>
    </GridViewColumn>


    The default DataContext of the Image is an item in the ItemsSource and this one has no DisplayedImage property apparently.






    share|improve this answer




























      0














      You could use a RelativeSource to bind to a property of the view model from within the CellTemplate:



      <GridViewColumn Width="50" >
      <GridViewColumn.CellTemplate>
      <DataTemplate>
      <Border Width="30" Height="30" Background="Yellow" >
      <Image Width="10" Height="10" Stretch="Fill"
      Source="{Binding Path=DataContext.DisplayedImage, RelativeSource={RelativeSource AncestorType=ListView}}"
      HorizontalAlignment="Center" Margin="0,0,0,0" />
      </Border>
      </DataTemplate>
      </GridViewColumn.CellTemplate>
      </GridViewColumn>


      The default DataContext of the Image is an item in the ItemsSource and this one has no DisplayedImage property apparently.






      share|improve this answer


























        0












        0








        0







        You could use a RelativeSource to bind to a property of the view model from within the CellTemplate:



        <GridViewColumn Width="50" >
        <GridViewColumn.CellTemplate>
        <DataTemplate>
        <Border Width="30" Height="30" Background="Yellow" >
        <Image Width="10" Height="10" Stretch="Fill"
        Source="{Binding Path=DataContext.DisplayedImage, RelativeSource={RelativeSource AncestorType=ListView}}"
        HorizontalAlignment="Center" Margin="0,0,0,0" />
        </Border>
        </DataTemplate>
        </GridViewColumn.CellTemplate>
        </GridViewColumn>


        The default DataContext of the Image is an item in the ItemsSource and this one has no DisplayedImage property apparently.






        share|improve this answer













        You could use a RelativeSource to bind to a property of the view model from within the CellTemplate:



        <GridViewColumn Width="50" >
        <GridViewColumn.CellTemplate>
        <DataTemplate>
        <Border Width="30" Height="30" Background="Yellow" >
        <Image Width="10" Height="10" Stretch="Fill"
        Source="{Binding Path=DataContext.DisplayedImage, RelativeSource={RelativeSource AncestorType=ListView}}"
        HorizontalAlignment="Center" Margin="0,0,0,0" />
        </Border>
        </DataTemplate>
        </GridViewColumn.CellTemplate>
        </GridViewColumn>


        The default DataContext of the Image is an item in the ItemsSource and this one has no DisplayedImage property apparently.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 22 '18 at 12:54









        mm8mm8

        84.3k81931




        84.3k81931
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419273%2fimage-is-not-visible-in-gridview-in-wpf%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

            Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

            A Topological Invariant for $pi_3(U(n))$